a89bb9f
diff -uNr calibre.old/src/calibre/ebooks/pdf/manipulate/crop.py calibre/src/calibre/ebooks/pdf/manipulate/crop.py
a89bb9f
--- calibre.old/src/calibre/ebooks/pdf/manipulate/crop.py	2011-03-21 00:04:16.946217391 +0100
a89bb9f
+++ calibre/src/calibre/ebooks/pdf/manipulate/crop.py	2011-03-21 00:08:54.324717632 +0100
a89bb9f
@@ -102,7 +102,7 @@
a89bb9f
         if len(bounding_lines) != input_pdf.numPages:
a89bb9f
             raise Exception('Error bounding file %s page count does not correspond to specified pdf' % opts.bounding)
a89bb9f
 
a89bb9f
-    output_pdf = PdfFileWriter(title=title,author=author)
a89bb9f
+    output_pdf = PdfFileWriter()
a89bb9f
     blines = iter(bounding_lines)
a89bb9f
     for page in input_pdf.pages:
a89bb9f
         if bounding_lines != []:
a89bb9f
diff -uNr calibre.old/src/calibre/ebooks/pdf/manipulate/decrypt.py calibre/src/calibre/ebooks/pdf/manipulate/decrypt.py
a89bb9f
--- calibre.old/src/calibre/ebooks/pdf/manipulate/decrypt.py	2011-03-21 00:04:16.947217310 +0100
a89bb9f
+++ calibre/src/calibre/ebooks/pdf/manipulate/decrypt.py	2011-03-21 00:08:23.849195389 +0100
a89bb9f
@@ -72,7 +72,7 @@
a89bb9f
 
a89bb9f
     title = pdf.documentInfo.title if pdf.documentInfo.title else _('Unknown')
a89bb9f
     author = pdf.documentInfo.author if pdf.documentInfo.author else _('Unknown')
a89bb9f
-    out_pdf = PdfFileWriter(title=title, author=author)
a89bb9f
+    out_pdf = PdfFileWriter()
a89bb9f
 
a89bb9f
     for page in pdf.pages:
a89bb9f
         out_pdf.addPage(page)
a89bb9f
diff -uNr calibre.old/src/calibre/ebooks/pdf/manipulate/encrypt.py calibre/src/calibre/ebooks/pdf/manipulate/encrypt.py
a89bb9f
--- calibre.old/src/calibre/ebooks/pdf/manipulate/encrypt.py	2011-03-21 00:04:16.948217229 +0100
a89bb9f
+++ calibre/src/calibre/ebooks/pdf/manipulate/encrypt.py	2011-03-21 00:09:05.909775518 +0100
a89bb9f
@@ -66,7 +66,7 @@
a89bb9f
         title = metadata.title
a89bb9f
         author = authors_to_string(metadata.authors)
a89bb9f
 
a89bb9f
-    out_pdf = PdfFileWriter(title=title, author=author)
a89bb9f
+    out_pdf = PdfFileWriter()
a89bb9f
 
a89bb9f
     pdf = PdfFileReader(open(os.path.abspath(pdf_path), 'rb'))
a89bb9f
     for page in pdf.pages:
a89bb9f
diff -uNr calibre.old/src/calibre/ebooks/pdf/manipulate/merge.py calibre/src/calibre/ebooks/pdf/manipulate/merge.py
a89bb9f
--- calibre.old/src/calibre/ebooks/pdf/manipulate/merge.py	2011-03-21 00:04:16.949217148 +0100
a89bb9f
+++ calibre/src/calibre/ebooks/pdf/manipulate/merge.py	2011-03-21 00:08:32.281510009 +0100
a89bb9f
@@ -68,7 +68,7 @@
a89bb9f
         title = metadata.title
a89bb9f
         author = authors_to_string(metadata.authors)
a89bb9f
 
a89bb9f
-    out_pdf = PdfFileWriter(title=title, author=author)
a89bb9f
+    out_pdf = PdfFileWriter()
a89bb9f
 
a89bb9f
     for pdf_path in in_paths:
a89bb9f
         pdf = PdfFileReader(open(os.path.abspath(pdf_path), 'rb'))
a89bb9f
diff -uNr calibre.old/src/calibre/ebooks/pdf/manipulate/reverse.py calibre/src/calibre/ebooks/pdf/manipulate/reverse.py
a89bb9f
--- calibre.old/src/calibre/ebooks/pdf/manipulate/reverse.py	2011-03-21 00:04:16.949217148 +0100
a89bb9f
+++ calibre/src/calibre/ebooks/pdf/manipulate/reverse.py	2011-03-21 00:08:06.841577565 +0100
a89bb9f
@@ -66,7 +66,7 @@
a89bb9f
         title = metadata.title
a89bb9f
         author = authors_to_string(metadata.authors)
a89bb9f
 
a89bb9f
-    out_pdf = PdfFileWriter(title=title, author=author)
a89bb9f
+    out_pdf = PdfFileWriter()
a89bb9f
 
a89bb9f
     pdf = PdfFileReader(open(os.path.abspath(pdf_path), 'rb'))
a89bb9f
     for page in reversed(pdf.pages):
a89bb9f
diff -uNr calibre.old/src/calibre/ebooks/pdf/manipulate/rotate.py calibre/src/calibre/ebooks/pdf/manipulate/rotate.py
a89bb9f
--- calibre.old/src/calibre/ebooks/pdf/manipulate/rotate.py	2011-03-21 00:04:16.950217067 +0100
a89bb9f
+++ calibre/src/calibre/ebooks/pdf/manipulate/rotate.py	2011-03-21 00:08:15.289891163 +0100
a89bb9f
@@ -65,7 +65,7 @@
a89bb9f
         title = metadata.title
a89bb9f
         author = authors_to_string(metadata.authors)
a89bb9f
 
a89bb9f
-    out_pdf = PdfFileWriter(title=title, author=author)
a89bb9f
+    out_pdf = PdfFileWriter()
a89bb9f
 
a89bb9f
     pdf = PdfFileReader(open(os.path.abspath(pdf_path), 'rb'))
a89bb9f
     for page in pdf.pages:
a89bb9f
diff -uNr calibre.old/src/calibre/ebooks/pdf/manipulate/split.py calibre/src/calibre/ebooks/pdf/manipulate/split.py
a89bb9f
--- calibre.old/src/calibre/ebooks/pdf/manipulate/split.py	2011-03-21 00:04:16.951216986 +0100
a89bb9f
+++ calibre/src/calibre/ebooks/pdf/manipulate/split.py	2011-03-21 00:08:42.917645418 +0100
a89bb9f
@@ -84,7 +84,7 @@
a89bb9f
         title = metadata.title
a89bb9f
         author = authors_to_string(metadata.authors)
a89bb9f
     
a89bb9f
-    out_pdf = PdfFileWriter(title=title, author=author)
a89bb9f
+    out_pdf = PdfFileWriter()
a89bb9f
     for page_num in range(start, end + 1):
a89bb9f
         out_pdf.addPage(pdf.getPage(page_num))
a89bb9f
     with open('%s%s.pdf' % (name, suffix), 'wb') as out_file:
a89bb9f
diff -uNr calibre.old/src/calibre/ebooks/pdf/writer.py calibre/src/calibre/ebooks/pdf/writer.py
a89bb9f
--- calibre.old/src/calibre/ebooks/pdf/writer.py	2011-03-21 00:04:17.228194487 +0100
a89bb9f
+++ calibre/src/calibre/ebooks/pdf/writer.py	2011-03-21 00:07:52.059778357 +0100
a89bb9f
@@ -193,7 +193,7 @@
a89bb9f
         self.insert_cover()
a89bb9f
 
a89bb9f
         try:
a89bb9f
-            outPDF = PdfFileWriter(title=self.metadata.title, author=self.metadata.author)
a89bb9f
+            outPDF = PdfFileWriter()
a89bb9f
             for item in self.combine_queue:
a89bb9f
                 inputPDF = PdfFileReader(open(item, 'rb'))
a89bb9f
                 for page in inputPDF.pages: