We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0554bf4 commit cda54e0Copy full SHA for cda54e0
WebHostLib/misc.py
@@ -128,8 +128,13 @@ def tutorial_landing():
128
"authors": tutorial.authors,
129
"language": tutorial.language
130
}
131
- tutorials = {world_name: tutorials for world_name, tutorials in title_sorted(
132
- tutorials.items(), key=lambda element: "\x00" if element[0] == "Archipelago" else worlds[element[0]].game)}
+
+ worlds = dict(
133
+ title_sorted(
134
+ worlds.items(), key=lambda element: "\x00" if element[0] == "Archipelago" else worlds[element[0]].game
135
+ )
136
137
138
return render_template("tutorialLanding.html", worlds=worlds, tutorials=tutorials)
139
140
0 commit comments