Remove debug statements (WIP on sudo)

This commit is contained in:
Michael DeHaan 2012-03-28 20:58:34 -04:00
parent 4971101f27
commit 7133734d87
2 changed files with 17 additions and 9 deletions

View file

@ -36,10 +36,8 @@ from ansible import callbacks as ans_callbacks
HAS_ATFORK=True
try:
print "DEBUG: I have atfork"
from Crypto.Random import atfork
except ImportError:
print "DEBUG: I have no atfork, this won't help my problem"
HAS_ATFORK=False
################################################