From b7f57fa88df6e17a57ea5be1b726a66b1c81d7e9 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 22 Jan 2012 16:40:07 +0530 Subject: [PATCH] ... --- src/calibre/ebooks/oeb/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/ebooks/oeb/base.py b/src/calibre/ebooks/oeb/base.py index 8924f1e913..b902eb9701 100644 --- a/src/calibre/ebooks/oeb/base.py +++ b/src/calibre/ebooks/oeb/base.py @@ -427,7 +427,7 @@ class DirContainer(object): def _unquote(self, path): # urlunquote must run on a bytestring and will return a bytestring - # if it runs on a unicode object, it returns a double encoded unicode + # If it runs on a unicode object, it returns a double encoded unicode # string: unquote(u'%C3%A4') != unquote(b'%C3%A4').decode('utf-8') # and the latter is correct if isinstance(path, unicode):