Skip to content

Commit

Permalink
Fix calls to cdrdao.ReadTOCTask()
Browse files Browse the repository at this point in the history
Signed-off-by: Frederik “Freso” S. Olesen <freso.dk@gmail.com>
  • Loading branch information
Freso committed Feb 13, 2019
1 parent 1a1ddd5 commit 6abd120
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions whipper/common/program.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def getFastToc(self, runner, device):
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

Expand All @@ -114,7 +114,7 @@ def getTable(self, runner, cddbdiscid, mbdiscid, device, offset,
itable = None
tdict = {}

t = cdrdao.ReadTOC_Task(device)
t = cdrdao.ReadTOCTask(device)
t.description = "Reading table"
t.toc_path = toc_path
runner.run(t)
Expand Down

1 comment on commit 6abd120

@JoeLametta
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This probably slipped through during the resolution of merge conflicts...

Please sign in to comment.