personas_backend

changeset 182:f1a9f5f820d7

Oops, fixed an infinite-recursion bug.
author Atul Varma <varmaa@toolness.com>
date Wed Apr 16 20:03:26 2008 -0700 (4 years ago)
parents 8b9d37988100
children cd24b475ca76
files personasbackend/personas/forms.py
line diff
1.1 --- a/personasbackend/personas/forms.py Wed Apr 16 19:51:57 2008 -0700 1.2 +++ b/personasbackend/personas/forms.py Wed Apr 16 20:03:26 2008 -0700 1.3 @@ -80,7 +80,7 @@ 1.4 ) 1.5 1.6 def clean( self ): 1.7 - super( NewPersonaForm, self ).clean() 1.8 + super( UserPersonaForm, self ).clean() 1.9 if not self.cleaned_data["agree_to_terms"]: 1.10 raise forms.ValidationError( 1.11 "You must agree to the terms of service to "