remove comments

This commit is contained in:
Mike Fährmann
2015-11-21 04:29:08 +01:00
parent 4d56b76aa8
commit c0aaf230d5

View File

@@ -14,7 +14,6 @@ from .extractor.common import Message
class DownloadJob(): class DownloadJob():
def __init__(self, url): def __init__(self, url):
# self.extractor, self.info = extractor.find(url)
self.extractor = extractor.find(url) self.extractor = extractor.find(url)
if self.extractor is None: if self.extractor is None:
print(url, ": No extractor found", sep="", file=sys.stderr) print(url, ": No extractor found", sep="", file=sys.stderr)
@@ -119,7 +118,6 @@ class DownloadJob():
class KeywordJob(): class KeywordJob():
def __init__(self, url): def __init__(self, url):
# self.extractor, self.info = extractor.find(url)
self.extractor = extractor.find(url) self.extractor = extractor.find(url)
if self.extractor is None: if self.extractor is None:
print(url, ": No extractor found", sep="", file=sys.stderr) print(url, ": No extractor found", sep="", file=sys.stderr)