* morituri/rip/image.py:

Fix more utf-8 issues.
This commit is contained in:
Thomas Vander Stichele
2010-04-14 07:23:06 +00:00
parent 866a0a27d9
commit 887ee06c65
2 changed files with 7 additions and 2 deletions

View File

@@ -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:

View File

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