* morituri/rip/image.py:
Fix problem to encode from files with unicode chars.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2010-04-08 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* morituri/rip/image.py:
|
||||
Fix problem to encode from files with unicode chars.
|
||||
|
||||
2010-04-08 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* morituri/program/cdparanoia.py:
|
||||
|
||||
@@ -62,7 +62,7 @@ class Encode(logcommand.LogCommand):
|
||||
runner = task.SyncRunner()
|
||||
|
||||
for arg in args:
|
||||
arg = unicode(arg)
|
||||
arg = arg.decode('utf-8')
|
||||
indir = os.path.dirname(arg)
|
||||
cueImage = image.Image(arg)
|
||||
cueImage.setup(runner)
|
||||
|
||||
Reference in New Issue
Block a user