oops typo in call of CallErrors handler

This commit is contained in:
Romain Bignon 2010-11-12 14:24:43 +01:00
commit fda971a7f1

View file

@ -417,7 +417,7 @@ class ReplApplication(Cmd, BaseApplication):
try:
return super(ReplApplication, self).onecmd(line)
except CallErrors, e:
self.bcall_error_handler(e)
self.bcall_errors_handler(e)
except NotEnoughArguments, e:
print >>sys.stderr, 'Error: no enough arguments.'
except (KeyboardInterrupt,EOFError):