Regression that broke CHM conversion of OS X. Fixes #5483 (Error when converting CHM to PDF)

This commit is contained in:
Kovid Goyal 2010-05-08 06:51:25 -06:00
parent e520f31ed6
commit 655fcb828a

View File

@ -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