try except na sort

This commit is contained in:
ticvac 2024-12-01 15:47:49 +01:00
parent 9020f5551d
commit eb2b861d48

View file

@ -56,8 +56,11 @@ def get_app_list(self, request, app_label=None):
# Sort the models alphabetically within each app.
for app in app_list:
app['models'].sort(key=lambda x: locale.strxfrm(x['name'].lower()))
try:
for app in app_list:
app['models'].sort(key=lambda x: locale.strxfrm(x['name'].lower()))
except OSError:
pass # locale.strxfrm nefunguje na macu... :-/ -> neprovede se řazení
return app_list