Denis K пре 9 година
родитељ
комит
7238635105
1 измењених фајлова са 1 додато и 1 уклоњено
  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())