summaryrefslogtreecommitdiffstats
path: root/django_authopenid/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'django_authopenid/forms.py')
-rw-r--r--django_authopenid/forms.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/django_authopenid/forms.py b/django_authopenid/forms.py
index d4482751..6781401e 100644
--- a/django_authopenid/forms.py
+++ b/django_authopenid/forms.py
@@ -88,6 +88,9 @@ class UserNameField(forms.CharField):
username = super(UserNameField,self).clean(username.strip())
if self.skip_clean == True:
return username
+ if hasattr(self, 'user_instance'):
+ if username == self.user_instance.username:
+ return username
if not username_re.search(username):
raise forms.ValidationError(self.error_messages['invalid'])
if username in self.RESERVED_NAMES: