authentic: fix role emails field for django 2 (#54302)

This commit is contained in:
Valentin Deniaud 2021-05-26 15:00:33 +02:00
parent 1a02b24d14
commit c7362f2418
1 changed files with 1 additions and 1 deletions

View File

@ -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):