mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 10:42:34 +01:00
remove comments
This commit is contained in:
parent
4d56b76aa8
commit
c0aaf230d5
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user