mirror of https://github.com/scrapy/scrapy.git
remove debugging code
This commit is contained in:
parent
3a6b80259d
commit
8f3a509d44
|
|
@ -233,7 +233,6 @@ class ExecutionEngine(object):
|
|||
next loop and this function is guaranteed to be called (at least) once
|
||||
again for this spider.
|
||||
"""
|
||||
print ">>> spider_idle!"
|
||||
res = self.signals.send_catch_log(signal=signals.spider_idle, \
|
||||
spider=spider, dont_log=DontCloseSpider)
|
||||
if any(isinstance(x, Failure) and isinstance(x.value, DontCloseSpider) \
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ from scrapy.utils import signal
|
|||
|
||||
class SignalManager(object):
|
||||
|
||||
def __init__(self, sender=dispatcher.Any):
|
||||
def __init__(self, sender=dispatcher.Anonymous):
|
||||
self.sender = sender
|
||||
|
||||
def connect(self, *a, **kw):
|
||||
|
|
|
|||
Loading…
Reference in New Issue