diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-07-09 17:13:21 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-07-09 17:13:21 -0500 |
commit | f4cd7a4ade374bdace27d8f0216f36c96c652efc (patch) | |
tree | cdc184e7ed0983bf9a35f5c4c6d9ae54eefb4993 | |
parent | 1fd97db348fb8eb7b455f4f991fe73143611a945 (diff) | |
download | mediagoblin-f4cd7a4ade374bdace27d8f0216f36c96c652efc.tar.lz mediagoblin-f4cd7a4ade374bdace27d8f0216f36c96c652efc.tar.xz mediagoblin-f4cd7a4ade374bdace27d8f0216f36c96c652efc.zip |
<Elrond> Oh well... Did I really have this wtforms cruft in my setup_workbench
commit. :-( I don't know even, how it got in there. :-|
-rw-r--r-- | mediagoblin/edit/forms.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mediagoblin/edit/forms.py b/mediagoblin/edit/forms.py index 0ed52af1..fdbd5c75 100644 --- a/mediagoblin/edit/forms.py +++ b/mediagoblin/edit/forms.py @@ -32,5 +32,4 @@ class EditProfileForm(wtforms.Form): [wtforms.validators.Length(min=0, max=500)]) url = wtforms.TextField( 'Website', - [wtforms.validators.Optional(), - wtforms.validators.URL(message='Improperly formed URL')]) + [wtforms.validators.URL(message='Improperly formed URL')]) |