* morituri/rip/image.py:
Fix more utf-8 issues.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2010-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* morituri/rip/image.py:
|
||||
Fix more utf-8 issues.
|
||||
|
||||
2010-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* morituri/image/image.py:
|
||||
|
||||
@@ -106,7 +106,7 @@ class Retag(logcommand.LogCommand):
|
||||
|
||||
for arg in args:
|
||||
print 'Retagging image %r' % arg
|
||||
arg = unicode(arg)
|
||||
arg = arg.decode('utf-8')
|
||||
cueImage = image.Image(arg)
|
||||
cueImage.setup(runner)
|
||||
|
||||
@@ -136,7 +136,7 @@ class Verify(logcommand.LogCommand):
|
||||
cache = accurip.AccuCache()
|
||||
|
||||
for arg in args:
|
||||
arg = unicode(arg)
|
||||
arg = arg.decode('utf-8')
|
||||
cueImage = image.Image(arg)
|
||||
cueImage.setup(runner)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user