* morituri/rip/cd.py:
Fix warning against rebuilt package.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2009-09-06 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* morituri/rip/cd.py:
|
||||||
|
Fix warning against rebuilt package.
|
||||||
|
|
||||||
2009-09-06 Thomas Vander Stichele <thomas at apestaart dot org>
|
2009-09-06 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* README:
|
* README:
|
||||||
|
|||||||
@@ -90,8 +90,12 @@ class Rip(logcommand.LogCommand):
|
|||||||
function(runner, t)
|
function(runner, t)
|
||||||
version = t.tasks[1].parser.version
|
version = t.tasks[1].parser.version
|
||||||
from pkg_resources import parse_version as V
|
from pkg_resources import parse_version as V
|
||||||
if V(version) <= V('1.2.3'):
|
# we've built a cdrdao 1.2.3rc2 modified package with the patch
|
||||||
print 'Warning: cdrdao 1.2.3 and older have a pre-gap length bug.'
|
if V(version) < V('1.2.3rc2p1'):
|
||||||
|
print '''
|
||||||
|
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
|
||||||
|
'''
|
||||||
ptoc.persist(t.table)
|
ptoc.persist(t.table)
|
||||||
ittoc = ptoc.object
|
ittoc = ptoc.object
|
||||||
assert ittoc.hasTOC()
|
assert ittoc.hasTOC()
|
||||||
|
|||||||
Reference in New Issue
Block a user