diff options
-rw-r--r-- | ishtar_common/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/forms.py b/ishtar_common/forms.py index 13ad1cd30..e01e74a14 100644 --- a/ishtar_common/forms.py +++ b/ishtar_common/forms.py @@ -193,7 +193,7 @@ class CustomForm(object): for k in splitted_key: value = value[k] choices.add(value) - choices = [('--', '')] + [(v, v) for v in sorted(list(choices))] + choices = [('', '')] + [(v, v) for v in sorted(list(choices))] return choices @classmethod |