mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-05 22:13:43 +02:00
Regression that broke CHM conversion of OS X. Fixes #5483 (Error when converting CHM to PDF)
This commit is contained in:
parent
e520f31ed6
commit
655fcb828a
1 changed files with 1 additions and 1 deletions
|
|
@ -292,7 +292,7 @@ def convert(self, stream, opts, file_ext, log,
|
|||
encoding=opts.input_encoding)
|
||||
|
||||
def is_case_sensitive(self, path):
|
||||
if self._is_case_sensitive is not None:
|
||||
if getattr(self, '_is_case_sensitive', None) is not None:
|
||||
return self._is_case_sensitive
|
||||
if not path or not os.path.exists(path):
|
||||
return islinux or isfreebsd
|
||||
|
|
|
|||
Loading…
Reference in a new issue