Browse Source

Fix progressbar with Click 7.0

Simon Conseil 8 years ago
parent
commit
b98b33d29e
  1. 2
      sigal/gallery.py

2
sigal/gallery.py

@ -673,7 +673,7 @@ class Gallery(object):
for res in self.pool.imap_unordered(worker, media_list):
if res:
failed_files.append(res)
next(bar)
bar.update(1)
self.pool.close()
self.pool.join()
except KeyboardInterrupt:

Loading…
Cancel
Save