fixed bug in MemoryUsage extension: get_engine_status() takes exactly 1 argument (0 given)

This commit is contained in:
Pablo Hoffman 2012-02-19 05:59:21 -02:00
parent 7b8942a648
commit 0939106872
1 changed files with 1 additions and 1 deletions

View File

@ -100,6 +100,6 @@ class MemoryUsage(object):
s += "ENGINE STATUS ------------------------------------------------------- \r\n"
s += "\r\n"
s += pformat(get_engine_status())
s += pformat(get_engine_status(self.crawler.engine))
s += "\r\n"
self.mail.send(rcpts, subject, s)