fix call to bcall_error_handler() on mother class
This commit is contained in:
parent
c0ce5affbd
commit
d6cb3f78ed
1 changed files with 1 additions and 1 deletions
|
|
@ -290,7 +290,7 @@ class ReplApplication(Cmd, ConsoleApplication):
|
||||||
if isinstance(error, ResultsConditionError):
|
if isinstance(error, ResultsConditionError):
|
||||||
print >>sys.stderr, u'Error(%s): condition error: %s' % (backend.name, error)
|
print >>sys.stderr, u'Error(%s): condition error: %s' % (backend.name, error)
|
||||||
else:
|
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 -------------
|
# -- options related methods -------------
|
||||||
def _handle_options(self):
|
def _handle_options(self):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue