Skip to content

Commit

Permalink
Merge pull request #362 from CTPUG/bugs/non_sso_code_needs_to_ignore_…
Browse files Browse the repository at this point in the history
…request_parameter

We don't want to pass request through to the base class, since it's not a keyword it understands
  • Loading branch information
drnlm committed Aug 2, 2017
2 parents 507d56c + 27e598b commit 5f095d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wafer/registration/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class RegistrationFormHelper(FormHelper):
form_action = reverse('registration_register')

def __init__(self, *args, **kwargs):
def __init__(self, request, *args, **kwargs):
super(RegistrationFormHelper, self).__init__(*args, **kwargs)
self.add_input(Submit('submit', _('Sign up')))

Expand Down

0 comments on commit 5f095d7

Please sign in to comment.