Remove debug print in sasl/__init__.py

This commit is contained in:
jesopo 2019-02-05 15:58:11 +00:00
parent 1fe20a2c98
commit b742b1ecee

View file

@ -72,7 +72,6 @@ class Module(ModuleManager.BaseModule):
event["server"]._scram = scram.SCRAM(
algo, sasl_username, sasl_password)
auth_text = event["server"]._scram.client_first()
print(auth_text)
else:
current_scram = event["server"]._scram
if current_scram.state == scram.SCRAMState.ClientFirst: