From f19e31fec5c679686f528fa77703fcb5a828ab5f Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Sun, 7 May 2023 19:46:02 +0200 Subject: [PATCH] utils.py: fix code reference fix #2632 --- gunicorn/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/util.py b/gunicorn/util.py index b7cdd4e26..e10da0fe4 100644 --- a/gunicorn/util.py +++ b/gunicorn/util.py @@ -460,7 +460,7 @@ def is_hoppish(header): def daemonize(enable_stdio_inheritance=False): """\ Standard daemonization of a process. - http://www.svbug.com/documentation/comp.unix.programmer-FAQ/faq_2.html#SEC16 + http://www.faqs.org/faqs/unix-faq/programmer/faq/ section 1.7 """ if 'GUNICORN_FD' not in os.environ: if os.fork():