From 7d88a930e9c402d6a7a3196a72fbcf7a38a049ec Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Sun, 21 Aug 2022 20:27:51 -0600 Subject: [PATCH] oops, thinko --- src/dvd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dvd.py b/src/dvd.py index 7873abd..c2c1064 100644 --- a/src/dvd.py +++ b/src/dvd.py @@ -79,7 +79,7 @@ class Copier: self.status["title"] = title self.status["size"] = max_sector * 2048 # DVD sector size = 2048 - obj["tracks"] = [(t["ix"], t["length"]) for t in self.collection] + self.status["tracks"] = [(t["ix"], t["length"]) for t in self.collection] def copy(self, directory):