From e4fdbdaf8db4af1be10f8b0191b6e750c5688466 Mon Sep 17 00:00:00 2001 From: Ciro Mattia Gonano Date: Wed, 19 Jun 2013 10:05:20 +0200 Subject: [PATCH] Explicitize arguments. --- kcc/comic2ebook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kcc/comic2ebook.py b/kcc/comic2ebook.py index 974a97a..2a5f23d 100755 --- a/kcc/comic2ebook.py +++ b/kcc/comic2ebook.py @@ -346,7 +346,7 @@ def dirImgProcess(path): if GUI: GUI.emit(QtCore.SIGNAL("progressBarTick"), pagenumber) if len(work) > 0: - splitpages = pool.map_async(fileImgProcess, work) + splitpages = pool.map_async(func=fileImgProcess, iterable=work) pool.close() if GUI: while not splitpages.ready():