Compare commits

..

No commits in common. "92a99ea0e1173cfd5186872ef49c3d67e78f7733" and "1bf3c55e6505b0fb01f86f60ea8205829b589153" have entirely different histories.

View File

@ -24,9 +24,6 @@ def gamelist(lang_code):
glist = json.loads((requests.get(
host_endpoint + '/gamelist').content).decode())
# Sorting list alphabetically
glist = sorted(glist, key=lambda d: d['game']['title'])
return render_template('gamelist.html', gamelist=glist,
**languages[lang_code], lang_code=lang_code)