01-08-2020, 01:46 AM
The line was:
if isinstance(group_value, six.string_types) and group_value.find("/"):
You put an extra "s" on "group_value".
if isinstance(group_value, six.string_types) and group_value.find("/"):
You put an extra "s" on "group_value".