mirror of https://github.com/scrapy/scrapy.git
renamed engine.resume() method to engine.unpause()
This commit is contained in:
parent
b3a624ed6b
commit
5271d1f185
|
|
@ -151,7 +151,7 @@ class ExecutionEngine(object):
|
|||
"""Pause the execution engine"""
|
||||
self.paused = True
|
||||
|
||||
def resume(self):
|
||||
def unpause(self):
|
||||
"""Resume the execution engine"""
|
||||
self.paused = False
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue