changeset 182:f1a9f5f820d7

Oops, fixed an infinite-recursion bug.
author Atul Varma <varmaa@toolness.com>
date Wed, 16 Apr 2008 20:03:26 -0700
parents 8b9d37988100
children cd24b475ca76
files personasbackend/personas/forms.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/personasbackend/personas/forms.py	Wed Apr 16 19:51:57 2008 -0700
+++ b/personasbackend/personas/forms.py	Wed Apr 16 20:03:26 2008 -0700
@@ -80,7 +80,7 @@
         )
 
     def clean( self ):
-        super( NewPersonaForm, self ).clean()
+        super( UserPersonaForm, self ).clean()
         if not self.cleaned_data["agree_to_terms"]:
             raise forms.ValidationError(
                 "You must agree to the terms of service to "