From f2d8b6d100bc9d1041f8db42b7ba5481ea9cf58a Mon Sep 17 00:00:00 2001 From: Ken Okada Date: Mon, 24 Aug 2020 21:15:31 +0900 Subject: [PATCH] Split long line --- gunicorn/app/base.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gunicorn/app/base.py b/gunicorn/app/base.py index c74ea3e8..dbd05bc7 100644 --- a/gunicorn/app/base.py +++ b/gunicorn/app/base.py @@ -219,7 +219,8 @@ class Application(BaseApplication): if self.cfg.daemon: if os.environ.get('NOTIFY_SOCKET'): - msg = "Warning: you shouldn't specify `daemon = True` when launching by systemd with `Type = notify`" + msg = "Warning: you shouldn't specify `daemon = True`" \ + " when launching by systemd with `Type = notify`" print(msg, file=sys.stderr, flush=True) util.daemonize(self.cfg.enable_stdio_inheritance)