From f53969a4b25f9fd057a301c10e251f1293d9fea4 Mon Sep 17 00:00:00 2001 From: James Lu Date: Thu, 20 Jul 2017 21:39:36 +0800 Subject: [PATCH] launcher: reword -n description to mention that it skips PID file checking as well --- launcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher.py b/launcher.py index 2b53bed..cf90539 100644 --- a/launcher.py +++ b/launcher.py @@ -14,7 +14,7 @@ def main(): parser.add_argument('config', help='specifies the path to the config file (defaults to pylink.yml)', nargs='?', default='pylink.yml') parser.add_argument("-v", "--version", help="displays the program version and exits", action='store_true') parser.add_argument("-c", "--check-pid", help="no-op; kept for compatiblity with PyLink 1.x", action='store_true') - parser.add_argument("-n", "--no-pid", help="skips generating PID files", action='store_true') + parser.add_argument("-n", "--no-pid", help="skips generating and checking PID files", action='store_true') args = parser.parse_args() if args.version: # Display version and exit