From e7eb0c6edc253d2e98dbbd56932091492e883867 Mon Sep 17 00:00:00 2001 From: Peter Kosztolanyi Date: Tue, 22 Sep 2020 09:19:35 +0100 Subject: [PATCH] Make pylint happy (#31) --- target_postgres/db_sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target_postgres/db_sync.py b/target_postgres/db_sync.py index 7214022..3b8443b 100644 --- a/target_postgres/db_sync.py +++ b/target_postgres/db_sync.py @@ -298,7 +298,7 @@ def open_connection(self): self.connection_config['password'], self.connection_config['port'] ) - + if 'ssl' in self.connection_config and self.connection_config['ssl'] == 'true': conn_string += " sslmode='require'"