fix call to bcall_error_handler() on mother class

This commit is contained in:
Romain Bignon 2011-03-05 23:56:47 +01:00
commit d6cb3f78ed

View file

@ -290,7 +290,7 @@ class ReplApplication(Cmd, ConsoleApplication):
if isinstance(error, ResultsConditionError):
print >>sys.stderr, u'Error(%s): condition error: %s' % (backend.name, error)
else:
return super(ReplApplication, self).bcall_error_handler(self, backend, error, backtrace)
return super(ReplApplication, self).bcall_error_handler(backend, error, backtrace)
# -- options related methods -------------
def _handle_options(self):