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):