Remove debugging prints 😭
This commit is contained in:
parent
ff3b824311
commit
b266e28ae1
1 changed files with 0 additions and 2 deletions
|
@ -169,7 +169,6 @@ def getComics(options):
|
||||||
try:
|
try:
|
||||||
for scraperobj in getScrapers(options.comic, options.basepath,
|
for scraperobj in getScrapers(options.comic, options.basepath,
|
||||||
options.adult, options.multimatch):
|
options.adult, options.multimatch):
|
||||||
print(scraperobj)
|
|
||||||
jobs.put(scraperobj)
|
jobs.put(scraperobj)
|
||||||
# start threads
|
# start threads
|
||||||
num_threads = min(options.parallel, jobs.qsize())
|
num_threads = min(options.parallel, jobs.qsize())
|
||||||
|
@ -244,7 +243,6 @@ def getScrapers(comics, basepath=None, adult=True, multiple_allowed=False, listi
|
||||||
# FIXME: Find a better way to work with indexes
|
# FIXME: Find a better way to work with indexes
|
||||||
scraperobj.indexes = indexes
|
scraperobj.indexes = indexes
|
||||||
if scraperobj not in scrapers:
|
if scraperobj not in scrapers:
|
||||||
print("A")
|
|
||||||
scrapers.add(scraperobj)
|
scrapers.add(scraperobj)
|
||||||
yield scraperobj
|
yield scraperobj
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue