From 57d7a70933895edec3fd50e802f81bfa0cb3d091 Mon Sep 17 00:00:00 2001 From: James Lu Date: Fri, 30 Mar 2018 23:44:47 -0700 Subject: [PATCH] launcher: mention that -c is explicitly kept as a no-op for PyLink <= 1.2.x (cherry picked from commit c0a061eff3c5e82ec9ed43aff1c8609d075d9d34) Conflicts: launcher.py --- launcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher.py b/launcher.py index 32e77b3..bcaf174 100644 --- a/launcher.py +++ b/launcher.py @@ -167,7 +167,7 @@ def main(): parser = argparse.ArgumentParser(description='Starts an instance of PyLink IRC Services.') 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("-c", "--check-pid", help="no-op; kept for compatibility with PyLink <= 1.2.x", action='store_true') parser.add_argument("-n", "--no-pid", help="skips generating and checking PID files", action='store_true') 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')