From: Ant Zucaro Date: Thu, 3 Nov 2011 01:56:19 +0000 (-0400) Subject: Fix repr with bad attribute. X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=d45c99d6e1fd95cd1f8d39814e0fee77f95ff983;p=xonotic%2Fxonstat.git Fix repr with bad attribute. --- diff --git a/xonstat/models.py b/xonstat/models.py index 4116b81..08a7cb5 100755 --- a/xonstat/models.py +++ b/xonstat/models.py @@ -79,8 +79,8 @@ class PlayerGameStat(object): self.create_dt = create_dt def __repr__(self): - return "" \ - % (self.player_id, self.game_id, self.create_dt, self.stat_type) + return "" \ + % (self.player_id, self.game_id, self.create_dt) def nick_stripped(self): if self.nick is None: