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