remove debugging code

This commit is contained in:
Pablo Hoffman 2013-02-27 03:52:51 -02:00
parent 3a6b80259d
commit 8f3a509d44
2 changed files with 1 additions and 2 deletions

View File

@ -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) \

View File

@ -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):