mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-08-07 09:01:38 -04:00
Fix #3472 (Error when converting to PDB from any format in Version 0.6.12)
This commit is contained in:
parent
65204966d0
commit
90e591274b
@ -47,6 +47,11 @@ class PDBOutput(OutputFormatPlugin):
|
||||
if Writer is None:
|
||||
raise PDBError('No writer available for format %s.' % format)
|
||||
|
||||
setattr(opts, 'flush_paras', False)
|
||||
setattr(opts, 'max_line_length', 0)
|
||||
setattr(opts, 'force_max_line_length', False)
|
||||
setattr(opts, 'indent_paras', False)
|
||||
|
||||
writer = Writer(opts, log)
|
||||
|
||||
out_stream.seek(0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user