diff --git a/gunicorn/app/base.py b/gunicorn/app/base.py index 66ac6d59..263ed8e3 100644 --- a/gunicorn/app/base.py +++ b/gunicorn/app/base.py @@ -143,7 +143,7 @@ class Application(BaseApplication): cfg = self.init(parser, args, args.args) # Load up the any app specific configuration - if cfg and cfg is not None: + if cfg: for k, v in cfg.items(): self.cfg.set(k.lower(), v)