From d6cb3f78ed72a74cbb1117907e6945f2b82bc428 Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Sat, 5 Mar 2011 23:56:47 +0100 Subject: [PATCH] fix call to bcall_error_handler() on mother class --- weboob/tools/application/repl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weboob/tools/application/repl.py b/weboob/tools/application/repl.py index 447840eb..b4086d4c 100644 --- a/weboob/tools/application/repl.py +++ b/weboob/tools/application/repl.py @@ -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):