confirmation: Fix arguments to super().

This and the last half-dozen commits were identified by lgtm.
This commit is contained in:
Tim Abbott 2017-08-25 09:49:42 -07:00
parent bee86b6e6b
commit 8b2cd96126
1 changed files with 1 additions and 1 deletions

View File

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