diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-08-11 22:54:11 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-08-11 22:54:11 -0500 |
commit | ba4858c5b4f639d0438b7a6d53a7a731424a430d (patch) | |
tree | 69ad17bc78d0b188fd6c9e75d40e4e390ca318fd /mediagoblin/submit/forms.py | |
parent | 07934b442f7cd3abae18eecdf533de004f88e6b1 (diff) | |
parent | 788272f30034fb2f917496197e317226d21aad2e (diff) | |
download | mediagoblin-ba4858c5b4f639d0438b7a6d53a7a731424a430d.tar.lz mediagoblin-ba4858c5b4f639d0438b7a6d53a7a731424a430d.tar.xz mediagoblin-ba4858c5b4f639d0438b7a6d53a7a731424a430d.zip |
Merge branch 'master' into processing
Conflicts:
mediagoblin/db/migrations.py
Diffstat (limited to 'mediagoblin/submit/forms.py')
-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 241d32dc..4519b057 100644 --- a/mediagoblin/submit/forms.py +++ b/mediagoblin/submit/forms.py @@ -22,11 +22,11 @@ from mediagoblin.util import fake_ugettext_passthrough as _ class SubmitStartForm(wtforms.Form): + file = wtforms.FileField(_('File')) title = wtforms.TextField( _('Title'), [wtforms.validators.Length(min=0, max=500)]) description = wtforms.TextAreaField('Description of this work') - file = wtforms.FileField(_('File')) tags = wtforms.TextField( _('Tags'), [tag_length_validator]) |