Remove print

This commit is contained in:
Ryan Leckey
2014-10-30 14:10:54 -07:00
parent f1d6ba4ecc
commit 04d612a185

View File

@@ -228,7 +228,6 @@ class EncryptedType(TypeDecorator, ScalarCoercible):
if issubclass(self.underlying_type.python_type, bool):
value = "true" if value else "false"
print("encrypt: ", value)
return self.engine.encrypt(value)
def process_result_value(self, value, dialect):