diff --git a/evennia/web/website/forms.py b/evennia/web/website/forms.py index 022d819cbe..66c5224914 100644 --- a/evennia/web/website/forms.py +++ b/evennia/web/website/forms.py @@ -32,7 +32,7 @@ class EvenniaForm(forms.Form): cleaned = {k:escape(v) for k,v in cleaned.items()} return cleaned -class AccountForm(EvenniaForm, UserCreationForm): +class AccountForm(UserCreationForm): """ This is a generic Django form tailored to the Account model.