fixed bug in rounding fix
authorForrest Voight <forrest@forre.st>
Mon, 6 Feb 2012 22:57:33 +0000 (17:57 -0500)
committerForrest Voight <forrest@forre.st>
Mon, 6 Feb 2012 22:57:33 +0000 (17:57 -0500)
p2pool/util/math.py

index 50a279d..614a0f2 100644 (file)
@@ -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%% (%.f-%.f%%)' % (100*f(x/n), left-1/2, right+1/2)
+    return '~%.1f%% (%.f-%.f%%)' % (100*f(x/n), 100*left-1/2, 100*right+1/2)
 
 def reversed(x):
     try: