aboutsummaryrefslogtreecommitdiff
path: root/prometheus_pgbouncer_exporter/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'prometheus_pgbouncer_exporter/utils.py')
-rw-r--r--prometheus_pgbouncer_exporter/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/prometheus_pgbouncer_exporter/utils.py b/prometheus_pgbouncer_exporter/utils.py
index 3a99695..ea69f46 100644
--- a/prometheus_pgbouncer_exporter/utils.py
+++ b/prometheus_pgbouncer_exporter/utils.py
@@ -16,7 +16,7 @@ import psycopg2
def get_connection(user=None, port=None, host=None, dbname='pgbouncer', password=None):
kwargs = { 'user': user, 'port': port, 'host': host, 'dbname': dbname, 'password': password }
- kwargs = dict([(k, v) for k, v in kwargs.iteritems() if v])
+ kwargs = dict([(k, v) for k, v in kwargs.items() if v])
connection = psycopg2.connect(
**kwargs
)