Add missing import

This commit is contained in:
Bastian Germann 2018-10-16 12:16:28 +02:00
parent bc2b54e2a4
commit 4796d5e637
1 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ from modulefinder import ModuleFinder
import pkgutil
import string
import multiprocessing
from queue import Empty
PACKAGE_RST = string.Template("""$underline
$title
@ -73,7 +74,7 @@ def progress(queue, number):
while number > progress_percentage:
try:
module = queue.get(True, 5)
except queue.Empty:
except Empty:
break
percent = round((progress_percentage/number)*100)
sys.stdout.write('{0}% File: {1}{2}\r'.format(percent, module, ' '*25))