we already get the version some other way

This commit is contained in:
Thomas Vander Stichele
2013-07-13 17:32:59 +02:00
parent eba184e54b
commit 7ba5f24f7a
2 changed files with 2 additions and 2 deletions

View File

@@ -133,7 +133,7 @@ class Program(log.Loggable):
ptoc.persist(t.table)
toc = ptoc.object
assert toc.hasTOC()
return (toc, version)
return toc
def getTable(self, runner, cddbdiscid, mbdiscid, device):
"""

View File

@@ -69,7 +69,7 @@ class _CD(logcommand.LogCommand):
self.program.unmountDevice(self.device)
# first, read the normal TOC, which is fast
self.ittoc, version = self.program.getFastToc(self.runner,
self.ittoc = self.program.getFastToc(self.runner,
self.options.toc_pickle,
self.device)