mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-02-27 21:06:37 +01:00
Fix isbndb.exe unicode error on windows.
This commit is contained in:
parent
a05d1b3614
commit
8eb9b269e4
1 changed files with 1 additions and 1 deletions
|
|
@ -140,7 +140,7 @@ def main(args=sys.argv):
|
|||
return 1
|
||||
|
||||
for book in create_books(opts, args):
|
||||
print unicode(book)
|
||||
print unicode(book).encode('utf-8')
|
||||
|
||||
return 0
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue