From 96974023f89c83793089ec20ff66fac3a88a0a98 Mon Sep 17 00:00:00 2001 From: Lorin Hochstein Date: Thu, 26 Jan 2017 22:40:51 -0800 Subject: [PATCH] remove trailing commas --- ch13/ansible/roles/mezzanine/files/wait_for_db.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ch13/ansible/roles/mezzanine/files/wait_for_db.py b/ch13/ansible/roles/mezzanine/files/wait_for_db.py index e549d14..ed80aec 100644 --- a/ch13/ansible/roles/mezzanine/files/wait_for_db.py +++ b/ch13/ansible/roles/mezzanine/files/wait_for_db.py @@ -4,10 +4,10 @@ import psycopg2 import sys import time -dbname = os.environ.get("DATABASE_NAME", ""), -user = os.environ.get("DATABASE_USER", ""), -password = os.environ.get("DATABASE_PASSWORD", ""), -host = os.environ.get("DATABASE_HOST", "postgres"), +dbname = os.environ.get("DATABASE_NAME", "") +user = os.environ.get("DATABASE_USER", "") +password = os.environ.get("DATABASE_PASSWORD", "") +host = os.environ.get("DATABASE_HOST", "postgres") port = int(os.environ.get("DATABASE_PORT", "5432")) attempts = 0 -- 2.44.0