Untested fix for bug #3472

This commit is contained in:
John Schember 2009-09-12 20:04:29 -04:00
parent de809a8fdf
commit a1f05532ce

View File

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