From 27e74475692a048c4a902ff345f81a6ec3c3f3f6 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Mon, 5 Jan 2015 12:12:00 -0500 Subject: [PATCH] Fix spacing --- endpoints/web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/endpoints/web.py b/endpoints/web.py index 913a6905a..519fc5c5e 100644 --- a/endpoints/web.py +++ b/endpoints/web.py @@ -162,7 +162,7 @@ def health(): check = HealthCheck.get_check(app.config['HEALTH_CHECKER'][0], app.config['HEALTH_CHECKER'][1]) (data, is_healthy) = check.conduct_healthcheck(db_healthy, buildlogs_healthy) - response = jsonify(dict(data = data, is_healthy = is_healthy)) + response = jsonify(dict(data=data, is_healthy=is_healthy)) response.status_code = 200 if is_healthy else 503 return response