X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/f6f8274ec87a79bfbcf6af6a998e9ff79e64d160..bf7348280872f3e17f6cb766f27d57c41d9e2ae0:/contrib/waldo/forms.py diff --git a/contrib/waldo/forms.py b/contrib/waldo/forms.py index 6f2b59b..2ee64d0 100644 --- a/contrib/waldo/forms.py +++ b/contrib/waldo/forms.py @@ -72,8 +72,8 @@ class WaldoAuthenticationForm(AuthenticationForm): ERROR_MESSAGE = _("Please enter a correct username and password. Note that both fields are case-sensitive.") def clean(self): - username = self.cleaned_data['username'] - password = self.cleaned_data['password'] + username = self.cleaned_data.get('username') + password = self.cleaned_data.get('password') message = self.ERROR_MESSAGE if username and password: