diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-07-30 21:44:36 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-07-30 21:44:36 -0500 |
commit | 3539dc8fb6cb59c6a52cb116e8993d73cd26f0d5 (patch) | |
tree | e5a8186b9a67626109b4b443c46810cf5598deff | |
parent | ae31c364395bba22e54c1f91f1a680260dee5aa0 (diff) | |
download | mediagoblin-3539dc8fb6cb59c6a52cb116e8993d73cd26f0d5.tar.lz mediagoblin-3539dc8fb6cb59c6a52cb116e8993d73cd26f0d5.tar.xz mediagoblin-3539dc8fb6cb59c6a52cb116e8993d73cd26f0d5.zip |
TOO_LONG_TAG_WARNING isn't needed in this module
-rw-r--r-- | mediagoblin/submit/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/submit/forms.py b/mediagoblin/submit/forms.py index 1a5a7f4e..f02c95a6 100644 --- a/mediagoblin/submit/forms.py +++ b/mediagoblin/submit/forms.py @@ -16,7 +16,7 @@ import wtforms -from mediagoblin.util import tag_length_validator, TOO_LONG_TAG_WARNING +from mediagoblin.util import tag_length_validator class SubmitStartForm(wtforms.Form): |