Skip to content

Commit

Permalink
minor fix: sort games by last modified, not alphabetically
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasdoehne committed Aug 12, 2018
1 parent 452d3e3 commit 5a2ac56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stellarisdashboard/dash_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ def _get_game_ids_matching_url(url):
if game_id is None:
game_id = ""
matches = models.get_known_games(game_id)
return game_id, sorted(matches)
return game_id, matches


def get_plot_lines(plot_data: visualization_data.EmpireProgressionPlotData, plot_spec: visualization_data.PlotSpecification) -> List[Dict[str, Any]]:
Expand Down

0 comments on commit 5a2ac56

Please sign in to comment.