From: Ant Zucaro Date: Sat, 7 Jul 2012 01:48:47 +0000 (-0400) Subject: Remove < 50 restriction. X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=e7abd4c149ede81c44cba975c23403ec94797b27;p=xonotic%2Fxonstat.git Remove < 50 restriction. --- diff --git a/xonstat/batch/badges/gen_badges.py b/xonstat/batch/badges/gen_badges.py index f6e02f4..4985562 100644 --- a/xonstat/batch/badges/gen_badges.py +++ b/xonstat/batch/badges/gen_badges.py @@ -15,7 +15,7 @@ req.matchdict = {'id':3} # template setup t = Template(filename = 'templates/badge.mako') -players = DBSession.query(Player).filter(Player.player_id < 50).\ +players = DBSession.query(Player).\ filter(Player.player_id == PlayerElo.player_id).\ filter(Player.nick != None).\ filter(Player.player_id > 2).\