Fix calls to cdrdao.ReadTOCTask()

Signed-off-by: Frederik “Freso” S. Olesen <freso.dk@gmail.com>
This commit is contained in:
Frederik “Freso” S. Olesen
2019-02-14 00:49:02 +01:00
parent 1a1ddd524a
commit 6abd120e4a

View File

@@ -97,7 +97,7 @@ class Program:
logger.warning('cdrdao older than 1.2.3 has a pre-gap length bug.'
' See http://sourceforge.net/tracker/?func=detail&aid=604751&group_id=2171&atid=102171') # noqa: E501
t = cdrdao.ReadTOC_Task(device)
t = cdrdao.ReadTOCTask(device)
runner.run(t)
toc = t.toc.table
@@ -114,7 +114,7 @@ class Program:
itable = None
tdict = {}
t = cdrdao.ReadTOC_Task(device)
t = cdrdao.ReadTOCTask(device)
t.description = "Reading table"
t.toc_path = toc_path
runner.run(t)