Fix for bug #846183: unhandled exception converting to PDF.

This commit is contained in:
John Schember 2011-09-11 08:32:54 -04:00
parent 5f8e8454e2
commit 5804d188d9

View File

@ -202,7 +202,7 @@ class PDFWriter(QObject): # {{{
inputPDF = PdfFileReader(item_stream)
for page in inputPDF.pages:
outPDF.addPage(page)
outPDF.write(self.out_stream)
outPDF.write(self.out_stream)
finally:
self._delete_tmpdir()
self.loop.exit(0)