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
--- 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):