Merge pull request #2340 from emanuelschuetze/event-name

Increase the allowed characters for event name config to 100.
This commit is contained in:
Norman Jäckel 2016-09-01 23:50:26 +02:00 committed by GitHub
commit 8974ce60a8
1 changed files with 1 additions and 1 deletions

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',