mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04: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
@ -292,7 +292,7 @@ class HTMLInput(InputFormatPlugin):
|
||||
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…
x
Reference in New Issue
Block a user