From 9b8517faeb417b18516a7f0e51cc509f462470c2 Mon Sep 17 00:00:00 2001 From: Oskar Hahn Date: Wed, 18 Jul 2012 10:46:26 +0200 Subject: [PATCH] default value for the config value admin_password --- openslides/participant/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openslides/participant/models.py b/openslides/participant/models.py index 17d95dea4..46c7e56b0 100644 --- a/openslides/participant/models.py +++ b/openslides/participant/models.py @@ -94,4 +94,5 @@ def default_config(sender, key, **kwargs): return { 'participant_pdf_system_url': 'http://example.com:8000', 'participant_pdf_welcometext': _('Welcome to OpenSlides!'), + 'admin_password': None, }.get(key)