don't print this debug message

This commit is contained in:
benoitc 2010-05-22 10:55:32 +02:00
parent 17a989672d
commit 70d1d7e99a

View File

@ -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