From c7362f2418c6635496789a92f37991d503afc29f Mon Sep 17 00:00:00 2001 From: Valentin Deniaud Date: Wed, 26 May 2021 15:00:33 +0200 Subject: [PATCH] authentic: fix role emails field for django 2 (#54302) --- hobo/agent/authentic2/role_forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hobo/agent/authentic2/role_forms.py b/hobo/agent/authentic2/role_forms.py index 40608ea..54e7123 100644 --- a/hobo/agent/authentic2/role_forms.py +++ b/hobo/agent/authentic2/role_forms.py @@ -39,7 +39,7 @@ class ListValidator(object): class CommaSeparatedInput(forms.TextInput): - def _format_value(self, value): + def format_value(self, value): if not value: return '' if not isinstance(value, six.string_types):