From 9021cf80bb91e1a90625ab8dbc65704279732f94 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Sun, 21 Aug 2016 13:18:55 +0300 Subject: [PATCH] Remove trailing comma from ConfigCheck.cli --- gunicorn/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/config.py b/gunicorn/config.py index 9970eb96..9014579b 100644 --- a/gunicorn/config.py +++ b/gunicorn/config.py @@ -834,7 +834,7 @@ class Spew(Setting): class ConfigCheck(Setting): name = "check_config" section = "Debugging" - cli = ["--check-config", ] + cli = ["--check-config"] validator = validate_bool action = "store_true" default = False