From a29372a756cdd8c843d912b1358f33b331f6435a Mon Sep 17 00:00:00 2001 From: Worros Date: Thu, 6 Nov 2008 12:14:46 +1300 Subject: [PATCH] Fix copy-paste error in Stat.py for a_freq_3 function. Hat tip to sqlcoder on sourceforge. --- pyfpdb/Stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/Stats.py b/pyfpdb/Stats.py index 07c69662..7bb9a8c5 100644 --- a/pyfpdb/Stats.py +++ b/pyfpdb/Stats.py @@ -382,7 +382,7 @@ def a_freq_3(stat_dict, player): '%3.1f' % (100*stat) + '%', 'a3=%3.1f' % (100*stat) + '%', 'a_fq_3=%3.1f' % (100*stat) + '%', - '(%d/%d)' % (stat_dict[player]['aggr_1'], stat_dict[player]['saw_1']), + '(%d/%d)' % (stat_dict[player]['aggr_3'], stat_dict[player]['saw_3']), 'Aggression Freq river/6th' ) except: