aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorneodarz <neodarz@neodarz.net>2020-08-15 16:30:04 +0200
committerneodarz <neodarz@neodarz.net>2020-08-15 16:30:04 +0200
commite6097b7d5b6122eeecea6a358a8e74cff5a17bbb (patch)
treefacbf89ce70ec0b1acae0b10ea77d9cf810aa777
parent631679b041112615c24f665d32ae80466f10cef1 (diff)
downloadmusic_downloader-e6097b7d5b6122eeecea6a358a8e74cff5a17bbb.tar.xz
music_downloader-e6097b7d5b6122eeecea6a358a8e74cff5a17bbb.zip
Don't stop if no extractor available
-rw-r--r--extractors/job.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/extractors/job.py b/extractors/job.py
index ce44e9a..596a3ae 100644
--- a/extractors/job.py
+++ b/extractors/job.py
@@ -15,8 +15,7 @@ class DlJob():
self.output = output
self._albums = []
if not self.extr:
- logging.error(url + " is not supported")
- sys.exit(1)
+ logging.error("No extractor found for " + url + ".")
def _find(self, url):
for cls in self._list_extractors():