From de2c7439c556a494cf0f0b3b4025eab8cc986ab8 Mon Sep 17 00:00:00 2001 From: Ant Zucaro Date: Thu, 5 Sep 2013 12:04:33 -0400 Subject: [PATCH] Fix reference to old view name. --- xonstat/templates/nvd3_damage.mako | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xonstat/templates/nvd3_damage.mako b/xonstat/templates/nvd3_damage.mako index a1e69b5..6ec21ab 100644 --- a/xonstat/templates/nvd3_damage.mako +++ b/xonstat/templates/nvd3_damage.mako @@ -80,8 +80,8 @@ text { } % if game_type_cd is not None: - d3.json("${request.route_url('player_damage_data_v2', id=player_id, _query={'limit':limit, 'game_type':game_type_cd})}", doDamageGraph); + d3.json("${request.route_url('player_weaponstats_data_json', id=player_id, _query={'limit':limit, 'game_type':game_type_cd})}", doDamageGraph); % else: - d3.json("${request.route_url('player_damage_data_v2', id=player_id, _query={'limit':limit})}", doDamageGraph); + d3.json("${request.route_url('player_weaponstats_data_json', id=player_id, _query={'limit':limit})}", doDamageGraph); % endif -- 2.39.2