# HG changeset patch # User Pawel Solyga # Date 1238781297 0 # Node ID 0b45b07a9d0c26fdc210234788287da42fb6fadd # Parent fd2e83a297c712183a9516f1d1d7831c3b2fec9a Fix calling of super class __init__ method in out_of_band Error class (wrong number of parameters). Patch by: Pawel Solyga Reviewed by: to-be-reviewed diff -r fd2e83a297c7 -r 0b45b07a9d0c app/soc/views/out_of_band.py --- a/app/soc/views/out_of_band.py Fri Apr 03 17:43:41 2009 +0000 +++ b/app/soc/views/out_of_band.py Fri Apr 03 17:54:57 2009 +0000 @@ -52,7 +52,7 @@ self.message_fmt = message_fmt self.context = context self.response_args = response_args - super(Error, self).__init__(message_fmt, context, response_args) + super(Error, self).__init__() class LoginRequest(Error):