* morituri/rip/offset.py:

Pass device parameter to ReadTrackTask.  Thanks to Alex B for
	  spotting this on my blog.
This commit is contained in:
Thomas Vander Stichele
2009-09-19 11:58:14 +00:00
parent 1980b69810
commit 2fc5623330
2 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
2009-09-19 Thomas Vander Stichele <thomas at apestaart dot org>
* 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 <thomas at apestaart dot org>
* morituri/program/cdparanoia.py:

View File

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