mirror of
https://github.com/ciromattia/kcc
synced 2026-09-01 16:37:06 +00:00
Explicitize arguments.
This commit is contained in:
+1
-1
@@ -346,7 +346,7 @@ def dirImgProcess(path):
|
|||||||
if GUI:
|
if GUI:
|
||||||
GUI.emit(QtCore.SIGNAL("progressBarTick"), pagenumber)
|
GUI.emit(QtCore.SIGNAL("progressBarTick"), pagenumber)
|
||||||
if len(work) > 0:
|
if len(work) > 0:
|
||||||
splitpages = pool.map_async(fileImgProcess, work)
|
splitpages = pool.map_async(func=fileImgProcess, iterable=work)
|
||||||
pool.close()
|
pool.close()
|
||||||
if GUI:
|
if GUI:
|
||||||
while not splitpages.ready():
|
while not splitpages.ready():
|
||||||
|
|||||||
Reference in New Issue
Block a user