diff --git a/VERSION b/VERSION index 9504e7dc..7d01a8df 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.16.1-develop7 +1.16.1-develop8 diff --git a/modules/util.py b/modules/util.py index 85e2a83f..5906fc79 100644 --- a/modules/util.py +++ b/modules/util.py @@ -111,7 +111,7 @@ def get_list(data, lower=False, upper=False, split=True, int_list=False): elif int_list is True: try: return [int(str(d).strip()) for d in list_data] except ValueError: return [] - else: return [str(d).strip() for d in list_data] + else: return [d if isinstance(d, dict) else str(d).strip() for d in list_data] def get_int_list(data, id_type): int_values = []