mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 05:22:52 +02:00
Wrong init arg. Remove unknown argument.
This commit is contained in:
parent
a2a1ea70f3
commit
05a9732dbb
2 changed files with 2 additions and 2 deletions
|
|
@ -89,7 +89,7 @@ def __init__(self, parent, db, book_id,
|
|||
None)
|
||||
|
||||
self.setup_input_output_formats(db, book_id, preferred_input_format,
|
||||
preferred_input_format)
|
||||
preferred_output_format)
|
||||
self.db, self.book_id = db, book_id
|
||||
self.setup_pipeline()
|
||||
|
||||
|
|
|
|||
|
|
@ -286,7 +286,7 @@ def build_images(self):
|
|||
with open('images.qrc', 'wb') as f:
|
||||
f.write(manifest)
|
||||
try:
|
||||
check_call(['pyrcc4', '-py2', '-o', images, 'images.qrc'])
|
||||
check_call(['pyrcc4', '-o', images, 'images.qrc'])
|
||||
except:
|
||||
import traceback
|
||||
traceback.print_exc()
|
||||
|
|
|
|||
Loading…
Reference in a new issue