From f551a126534ccdc58acdc7023c2183d933cdb05c Mon Sep 17 00:00:00 2001 From: antzucaro Date: Sun, 20 Nov 2011 14:37:38 -0500 Subject: [PATCH] Sort by the weapon's description in the accuracy table. --- xonstat/views/game.py | 1 + 1 file changed, 1 insertion(+) diff --git a/xonstat/views/game.py b/xonstat/views/game.py index 05ff277..3706365 100755 --- a/xonstat/views/game.py +++ b/xonstat/views/game.py @@ -67,6 +67,7 @@ def game_info(request): PlayerGameStat.player_game_stat_id).\ order_by(PlayerGameStat.rank).\ order_by(PlayerGameStat.score).\ + order_by(Weapon.descr).\ all(): if pgstat.player_game_stat_id not in pwstats: pwstats[pgstat.player_game_stat_id] = [] -- 2.39.2