diff --git a/ChangeLog b/ChangeLog index 0048ec8..0c523e2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-09-19 Thomas Vander Stichele + + * morituri/rip/offset.py: + Pass device parameter to ReadTrackTask. Thanks to Alex B for + spotting this on my blog. + 2009-09-12 Thomas Vander Stichele * morituri/program/cdparanoia.py: diff --git a/morituri/rip/offset.py b/morituri/rip/offset.py index 5284ea0..f9aa971 100644 --- a/morituri/rip/offset.py +++ b/morituri/rip/offset.py @@ -159,8 +159,9 @@ CD in the AccurateRip database.""" track, offset)) os.close(fd) - t = cdparanoia.ReadTrackTask(path, table, table.getTrackStart(track), - table.getTrackEnd(track), offset) + t = cdparanoia.ReadTrackTask(path, table, + table.getTrackStart(track), table.getTrackEnd(track), + offset=offset, device=self.options.device) t.description = 'Ripping track %d with read offset %d' % ( track, offset) runner.run(t)