diff --git a/ChangeLog b/ChangeLog index b3d4244..7baad40 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2011-05-22 Thomas Vander Stichele + + patch by: Loïc Minier + + * morituri/rip/cd.py: + Don't strip extension of HTOA track. + Fixes #50. + 2011-05-22 Thomas Vander Stichele * morituri/result/logger.py: diff --git a/morituri/rip/cd.py b/morituri/rip/cd.py index ef0481a..116b498 100644 --- a/morituri/rip/cd.py +++ b/morituri/rip/cd.py @@ -277,7 +277,7 @@ See http://sourceforge.net/tracker/?func=detail&aid=604751&group_id=2171&atid=1 if htoapath: u = u'#EXTINF:%d,%s\n' % ( itable.getTrackStart(1) / common.FRAMES_PER_SECOND, - os.path.basename(htoapath[:-4])) + os.path.basename(htoapath)) handle.write(u.encode('utf-8')) u = '%s\n' % os.path.basename(htoapath) handle.write(u.encode('utf-8'))