From 3609b65385d4e662c534cb3334ef9ebfde6c9417 Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Sat, 23 Jan 2010 17:16:36 +0100 Subject: [PATCH] add irc channel to the readme. --- README.rst | 5 +++-- gunicorn/main.py | 2 -- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index a4b1b64b..d7099ce0 100644 --- a/README.rst +++ b/README.rst @@ -3,7 +3,7 @@ About gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and nothing else. -This is a port of Unicorn (http://unicorn.bogomips.org/) in Python. +This is a port of Unicorn (http://unicorn.bogomips.org/) in Python. Meet us on `#gunicorn irc channel `_ on `freenode`_. Installation ------------ @@ -73,7 +73,7 @@ If you get the following error : AssertionError: The EvalException middleware is not usable in a multi-process environment -you have to set the debug option n your paste configuration file to False. +you have to set the debug option in your paste configuration file to False. Kernel Parameters @@ -115,3 +115,4 @@ This setting is generally only required on machines that are being used to test Check `this article`_ for more information on ephemeral ports. .. _this article: http://www.ncftp.com/ncftpd/doc/misc/ephemeral_ports.html +.. _freenode: http://freenode.net diff --git a/gunicorn/main.py b/gunicorn/main.py index 17d8a104..919bb177 100644 --- a/gunicorn/main.py +++ b/gunicorn/main.py @@ -55,8 +55,6 @@ def main(usage, get_app): arbiter = Arbiter((opts.host, opts.port), opts.workers, app) arbiter.run() - - def paste_server(app, global_conf=None, host="127.0.0.1", port=None, *args, **kwargs): if not port: