Remove spurious print statements in pg8000 dialect

This commit is contained in:
Tony Locke
2014-07-26 18:56:56 +01:00
parent f586754c86
commit 2e44749b76
@@ -172,11 +172,9 @@ class PGDialect_pg8000(PGDialect):
)
def do_begin_twophase(self, connection, xid):
print("begin twophase", xid)
connection.connection.tpc_begin((0, xid, ''))
def do_prepare_twophase(self, connection, xid):
print("prepare twophase", xid)
connection.connection.tpc_prepare()
def do_rollback_twophase(