From 20c0f03843120b1110fc9b144ddc7745b0a81ef8 Mon Sep 17 00:00:00 2001 From: Jonas Nockert Date: Wed, 17 Mar 2010 19:22:36 +0100 Subject: [PATCH] Example application's module and WSGI callable is actually test:app --- doc/site/usage.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/site/usage.rst b/doc/site/usage.rst index 709dba28..88f948a8 100644 --- a/doc/site/usage.rst +++ b/doc/site/usage.rst @@ -14,9 +14,9 @@ WSGI applications Thirty seconds to launch the `example application`_ packaged with Gunicorn:: $ cd /path/to/gunicorn/examples/ - $ gunicorn --workers=2 test:application + $ gunicorn --workers=2 test:app -The module ``test:application`` specifies the complete module name and WSGI callable. You can replace it with anything that is available on your ``PYTHONPATH`` like such:: +The module ``test:app`` specifies the complete module name and WSGI callable. You can replace it with anything that is available on your ``PYTHONPATH`` like such:: $ cd ~/ $ gunicorn --workers=12 awesomeproject.wsgi.main:main_app