From d5bbc17265b463d9485097ea57d3ef4633f01e76 Mon Sep 17 00:00:00 2001 From: Forrest Voight Date: Mon, 6 Feb 2012 16:59:41 -0500 Subject: [PATCH] fixed improper efficiency rounding --- p2pool/util/math.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/p2pool/util/math.py b/p2pool/util/math.py index e08cb1f..50a279d 100644 --- a/p2pool/util/math.py +++ b/p2pool/util/math.py @@ -152,7 +152,7 @@ def format_binomial_conf(x, n, conf=0.95, f=lambda x: x): if n == 0: return '???' left, right = minmax(map(f, binomial_conf_interval(x, n, conf))) - return '~%.1f%% (%i-%i%%)' % (100*f(x/n), int(100*left), 100-int(100-100*right)) + return '~%.1f%% (%.f-%.f%%)' % (100*f(x/n), left-1/2, right+1/2) def reversed(x): try: -- 1.7.1