From 70d1d7e99a5d4a5ad56e3e61986f66b3b1552ac0 Mon Sep 17 00:00:00 2001 From: benoitc Date: Sat, 22 May 2010 10:55:32 +0200 Subject: [PATCH] don't print this debug message --- gunicorn/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/config.py b/gunicorn/config.py index 2e8dc961..a2807df0 100644 --- a/gunicorn/config.py +++ b/gunicorn/config.py @@ -176,7 +176,7 @@ def validate_pos_int(val): else: # Booleans are ints! val = int(val) - print "Setting: %s" % val + #print "Setting: %s" % val if val < 0: raise ValueError("Value must be positive: %s" % val) return val