mirror of https://github.com/zulip/zulip.git
confirmation: Fix arguments to super().
This and the last half-dozen commits were identified by lgtm.
This commit is contained in:
parent
bee86b6e6b
commit
8b2cd96126
|
@ -33,7 +33,7 @@ class ConfirmationKeyException(Exception):
|
|||
|
||||
def __init__(self, error_type):
|
||||
# type: (int) -> None
|
||||
super(Exception, self).__init__()
|
||||
super(ConfirmationKeyException, self).__init__()
|
||||
self.error_type = error_type
|
||||
|
||||
def render_confirmation_key_error(request, exception):
|
||||
|
|
Loading…
Reference in New Issue