app/soc/views/out_of_band.py
changeset 656 a76f1b443ea4
parent 646 860e17e5118f
child 970 8b5611d5b053
--- a/app/soc/views/out_of_band.py	Wed Dec 03 21:26:16 2008 +0000
+++ b/app/soc/views/out_of_band.py	Wed Dec 03 21:27:01 2008 +0000
@@ -45,6 +45,7 @@
         django.http.HttpResponse; the most commonly used is 'status' to
         set the HTTP status code for the response
     """
+
     self.message_fmt = message_fmt
     self.context = context
     self.response_args = response_args
@@ -67,13 +68,15 @@
         a default value of None, in which case self.DEF_LOGIN_MSG_FMT is used
       **response_args: see Error.__init__()
     """
+
     if not message_fmt:
       message_fmt = self.DEF_LOGIN_MSG_FMT
 
-    Error.__init__(self, message_fmt, **response_args)
+    super(LoginRequest, self).__init__(message_fmt, **response_args)
 
 
 class AccessViolation(Error):
   """"Out of band error raised when an access requirement was not met.
   """
+
   pass