min=0 makes more sense than min=-1
[mediagoblin.git] / mediagoblin / submit / forms.py
index fe51e7fd3cda52b7724ac32b7ee93a6edf56536d..3fd9ea49f897dc15e88e1661808ac401c7f540fc 100644 (file)
@@ -21,6 +21,6 @@ import wtforms
 class SubmitStartForm(wtforms.Form):
     title = wtforms.TextField(
         'Title',
-        [wtforms.validators.Length(min=1, max=500)])
+        [wtforms.validators.Length(min=0, max=500)])
     description = wtforms.TextAreaField('Description of this work')
     file = wtforms.FileField('File')