summaryrefslogtreecommitdiff
path: root/allotter/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'allotter/forms.py')
-rw-r--r--allotter/forms.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/allotter/forms.py b/allotter/forms.py
index 5941932..fff29b2 100644
--- a/allotter/forms.py
+++ b/allotter/forms.py
@@ -60,12 +60,6 @@ class RegistrationForm(forms.Form):
except User.DoesNotExist:
return u_name
-
- def clean_password(self):
- pwd = self.cleaned_data['password']
- if pwd.strip(PWD_CHARS):
- raise forms.ValidationError("Only letters, digits and punctuation \
- are allowed in password")
def clean_confirm_password(self):
c_pwd = self.cleaned_data['confirm_password']