1
0
mirror of https://github.com/ciromattia/kcc synced 2026-01-09 23:09:43 +00:00

Explicitize arguments.

This commit is contained in:
Ciro Mattia Gonano
2013-06-19 10:05:20 +02:00
parent c09e050084
commit e4fdbdaf8d

View File

@@ -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():