Fixed a problem of not overriding _do__call__ function in ActionBase

This commit is contained in:
Gyedo Jeon 2010-07-21 00:28:38 +00:00
parent f0b2d1ec65
commit 451e10e3e3

View File

@ -54,6 +54,9 @@ class ActionBase(Functor):
self.postCall()
return self.result
# needed this line to override _do__call__
__call__ = _do__call__
def redo(self):
self.result = self._do__call__()
return self.result