Increase the allowed characters for event name config to 100.

Same limit as event_description.
This commit is contained in:
Emanuel Schuetze 2016-09-01 15:32:59 +02:00
parent c87111e81d
commit 7abdc2e615

View File

@ -17,7 +17,7 @@ def get_config_variables():
weight=110,
group='General',
subgroup='Event',
validators=(MaxLengthValidator(50),))
validators=(MaxLengthValidator(100),))
yield ConfigVariable(
name='general_event_description',