removed SciPy warning
authorForrest Voight <forrest.voight@gmail.com>
Fri, 9 Mar 2012 02:26:34 +0000 (21:26 -0500)
committerForrest Voight <forrest.voight@gmail.com>
Fri, 9 Mar 2012 02:26:43 +0000 (21:26 -0500)
p2pool/util/math.py

index de47dcc..a484c04 100644 (file)
@@ -118,7 +118,6 @@ def ierf(z):
 try:
     from scipy import special
 except ImportError:
-    print 'Install SciPy for more accurate confidence intervals!'
     def binomial_conf_interval(x, n, conf=0.95):
         assert 0 <= x <= n and 0 <= conf < 1
         if n == 0: