mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
Possible fix for #349
This commit is contained in:
parent
cedbe608ec
commit
10c70bfc94
@ -330,7 +330,8 @@ class HTMLConverter(object):
|
|||||||
|
|
||||||
self.file_name = os.path.basename(path)
|
self.file_name = os.path.basename(path)
|
||||||
self.logger.info('Processing %s', path if self.verbose else self.file_name)
|
self.logger.info('Processing %s', path if self.verbose else self.file_name)
|
||||||
raw = open(path, 'rb').read()
|
upath = path.encode('utf-8') if isinstance(path, unicode) else path
|
||||||
|
raw = open(upath, 'rb').read()
|
||||||
soup = self.preprocess(raw)
|
soup = self.preprocess(raw)
|
||||||
self.logger.info('\tConverting to BBeB...')
|
self.logger.info('\tConverting to BBeB...')
|
||||||
self.current_page = None
|
self.current_page = None
|
||||||
|
Loading…
x
Reference in New Issue
Block a user