From 85b530a33c21ba61fa9b1bde8119e37c39acda5b Mon Sep 17 00:00:00 2001 From: Malcolm Gill Date: Mon, 15 Oct 2012 23:27:34 +1100 Subject: [PATCH] Fixed double negative, maybe the most helpful ever. --- xonstat/templates/player_game_index.mako | 2 +- xonstat/templates/player_info.mako | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xonstat/templates/player_game_index.mako b/xonstat/templates/player_game_index.mako index 9b60e3c..2e67e8c 100644 --- a/xonstat/templates/player_game_index.mako +++ b/xonstat/templates/player_game_index.mako @@ -61,7 +61,7 @@ Recent Games % if round(g.elo_delta,2) > 0: % elif round(g.elo_delta,2) < 0: - + % else: % endif diff --git a/xonstat/templates/player_info.mako b/xonstat/templates/player_info.mako index 79ef981..2ae8709 100644 --- a/xonstat/templates/player_info.mako +++ b/xonstat/templates/player_info.mako @@ -461,7 +461,7 @@ Player Information % if round(gamestat.elo_delta,2) > 0: % elif round(gamestat.elo_delta,2) < 0: - + % else: % endif -- 2.39.2