From c6c704346ab85b57073065aacb0eb602d736da63 Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Wed, 3 Feb 2010 14:49:42 +0100 Subject: [PATCH] better help line --- gunicorn/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/main.py b/gunicorn/main.py index b898e48b..335aee1e 100644 --- a/gunicorn/main.py +++ b/gunicorn/main.py @@ -29,7 +29,7 @@ UMASK = 0 def options(): return [ op.make_option('-b', '--bind', dest='bind', - help='Adress to listen on. Ex. host:port or unix://path/to/socketfile'), + help='Adress to listen on. Ex. 127.0.0.1:8000 or unix:/tmp/gunicorn.sock'), op.make_option('--workers', dest='workers', type='int', help='Number of workers to spawn. [%default]'), op.make_option('-p','--pid', dest='pidfile',