From 59b23dbea8bef11a75170f9cf5b263fd6226c607 Mon Sep 17 00:00:00 2001 From: Forrest Voight Date: Thu, 8 Mar 2012 21:26:34 -0500 Subject: [PATCH] removed SciPy warning --- p2pool/util/math.py | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/p2pool/util/math.py b/p2pool/util/math.py index de47dcc..a484c04 100644 --- a/p2pool/util/math.py +++ b/p2pool/util/math.py @@ -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: -- 1.7.1