From 04d612a185253dd1a697937893c3d68408a5fb51 Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Thu, 30 Oct 2014 14:10:54 -0700 Subject: [PATCH] Remove print --- sqlalchemy_utils/types/encrypted.py | 1 - 1 file changed, 1 deletion(-) diff --git a/sqlalchemy_utils/types/encrypted.py b/sqlalchemy_utils/types/encrypted.py index 4f5ec29..178033d 100644 --- a/sqlalchemy_utils/types/encrypted.py +++ b/sqlalchemy_utils/types/encrypted.py @@ -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):