renamed engine.resume() method to engine.unpause()

This commit is contained in:
Pablo Hoffman 2009-06-22 20:01:29 -03:00
parent b3a624ed6b
commit 5271d1f185
1 changed files with 1 additions and 1 deletions

View File

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