Browse Source

Fix sort issue

Denis K 9 years ago
parent
commit
7238635105
1 changed files with 1 additions and 1 deletions
  1. 1 1
      jet/utils.py

+ 1 - 1
jet/utils.py

@@ -81,7 +81,7 @@ def get_app_list(context, order=True):
                     }
 
     # Sort the apps alphabetically.
-    app_list = app_dict.values()
+    app_list = list(app_dict.values())
 
     if order:
         app_list.sort(key=lambda x: x['name'].lower())