From 8c5c5dc556b191d696e97fe9951b1b0afbdbcb7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Norman=20J=C3=A4ckel?= Date: Mon, 6 Jun 2016 14:19:57 +0200 Subject: [PATCH] Fixed bug on config view. --- openslides/core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openslides/core/config.py b/openslides/core/config.py index b0ad57e4f..af2585a64 100644 --- a/openslides/core/config.py +++ b/openslides/core/config.py @@ -202,7 +202,7 @@ class ConfigVariable: 'help_text': self.help_text, } if self.input_type == 'choice': - data['choices'] = self.choices + data['choices'] = self.choices() if callable(self.choices) else self.choices return data def is_hidden(self):