fixed bug in rounding fix
[p2pool.git] / 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: