1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 02:32:33 +01:00

better support for KeyboardInterrupt exceptions

This commit is contained in:
Mike Fährmann 2015-04-10 17:31:49 +02:00
parent 1cd25b5369
commit 5806e02f97
2 changed files with 6 additions and 4 deletions

View File

@ -54,5 +54,8 @@ def main():
conf = parse_config_file(opts.config)
dlmgr = DownloadManager(opts, conf)
for url in opts.urls:
dlmgr.add(url)
try:
for url in opts.urls:
dlmgr.add(url)
except KeyboardInterrupt:
print("KeyboardInterrupt")

View File

@ -75,8 +75,7 @@ class AsynchronousExtractor(Extractor):
Extractor.__init__(self)
queue_size = int(config.get("general", "queue-size", fallback=5))
self.__queue = queue.Queue(maxsize=queue_size)
self.__thread = threading.Thread(target=self.async_items)
# self.__thread = threading.Thread(target=self.async_images, daemon=True)
self.__thread = threading.Thread(target=self.async_items, daemon=True)
def __iter__(self):
get = self.__queue.get