From 5505291818a9e610ea0d91a1e1be2ed84c1228a4 Mon Sep 17 00:00:00 2001 From: Jacob Oscarson Date: Mon, 17 Jun 2013 10:39:13 +0200 Subject: [PATCH] Polished help message for PID file specification --- rq/scripts/rqworker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rq/scripts/rqworker.py b/rq/scripts/rqworker.py index b7e58fe..d4c0040 100755 --- a/rq/scripts/rqworker.py +++ b/rq/scripts/rqworker.py @@ -28,7 +28,7 @@ def parse_args(): parser.add_argument('--quiet', '-q', action='store_true', default=False, help='Show less output') parser.add_argument('--sentry-dsn', action='store', default=None, metavar='URL', help='Report exceptions to this Sentry DSN') parser.add_argument('--pid', action='store', default=None, - help='Write PID to this file') + help='Write the process ID number to a file at the specified path') parser.add_argument('queues', nargs='*', help='The queues to listen on (default: \'default\')') return parser.parse_args()