patch by: Loïc Minier <lool@dooz.org>

* morituri/rip/cd.py:
	  Don't strip extension of HTOA track.
	  Fixes #50.
This commit is contained in:
Thomas Vander Stichele
2011-05-22 11:10:26 +00:00
parent 14d23e7a09
commit 24afc106f9
2 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,11 @@
2011-05-22 Thomas Vander Stichele <thomas at apestaart dot org>
patch by: Loïc Minier <lool@dooz.org>
* morituri/rip/cd.py:
Don't strip extension of HTOA track.
Fixes #50.
2011-05-22 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/result/logger.py:

View File

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