From d08249529700a1729d80f5dbba5f4ee50ee57c42 Mon Sep 17 00:00:00 2001 From: James Lu Date: Thu, 2 May 2019 15:41:11 -0700 Subject: [PATCH] launcher: drop experimental tag from -d/--daemonize --- launcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher.py b/launcher.py index f7e589b..3cb5dbf 100644 --- a/launcher.py +++ b/launcher.py @@ -176,7 +176,7 @@ def main(): parser.add_argument("-r", "--restart", help="restarts the PyLink instance with the given config file", action='store_true') parser.add_argument("-s", "--stop", help="stops the PyLink instance with the given config file", action='store_true') parser.add_argument("-R", "--rehash", help="rehashes the PyLink instance with the given config file", action='store_true') - parser.add_argument("-d", "--daemonize", help="[experimental] daemonizes the PyLink instance on POSIX systems", action='store_true') + parser.add_argument("-d", "--daemonize", help="daemonizes the PyLink instance on POSIX systems", action='store_true') parser.add_argument("-t", "--trace", help="traces through running Python code; useful for debugging", action='store_true') parser.add_argument('--trace-ignore-mods', help='comma-separated list of extra modules to ignore when tracing', action='store', default='') parser.add_argument('--trace-ignore-dirs', help='comma-separated list of extra directories to ignore when tracing', action='store', default='')