From 1ac385d1fb4328ba2220943741e4049fe472495b Mon Sep 17 00:00:00 2001 From: Oleksandr Shulgin Date: Wed, 10 Jun 2015 13:39:35 +0200 Subject: [PATCH] Fix logical decoding plugin options adaptation on python3 --- lib/extras.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/extras.py b/lib/extras.py index 8118e134..7de48d78 100644 --- a/lib/extras.py +++ b/lib/extras.py @@ -569,7 +569,7 @@ class ReplicationCursor(_cursor): for k,v in options.iteritems(): if not command.endswith('('): command += ", " - command += "%s %s" % (self.quote_ident(k), _A(str(v)).getquoted()) + command += "%s %s" % (self.quote_ident(k), _A(str(v))) command += ")" return self.start_replication_expert(o, command, keepalive_interval)