diff options
author | yoochan <yota.news@gmail.com> | 2015-01-06 10:45:29 +0000 |
---|---|---|
committer | yoochan <yota.news@gmail.com> | 2015-01-06 10:45:29 +0000 |
commit | ca7333c7b397ad83dbc19767ed90fc11f33e98cb (patch) | |
tree | bd75edd64219ebb86e01ba562c9591a65f0b5cbe /cherrypy/process/servers.py | |
parent | 87a618ec450e2b7c2db222912a5826001b2c3fff (diff) | |
download | cherrypy-git-ca7333c7b397ad83dbc19767ed90fc11f33e98cb.tar.gz |
servers.py edited online with Bitbucket (doctring of ServerAdapter corrected for proper formating of code)
--HG--
branch : yoochan/serverspy-edited-online-with-bitbucket-d-1420541114999
Diffstat (limited to 'cherrypy/process/servers.py')
-rw-r--r-- | cherrypy/process/servers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cherrypy/process/servers.py b/cherrypy/process/servers.py index 6e4694ec..6f8088bd 100644 --- a/cherrypy/process/servers.py +++ b/cherrypy/process/servers.py @@ -124,7 +124,7 @@ class ServerAdapter(object): If you need to start more than one HTTP server (to serve on multiple ports, or protocols, etc.), you can manually register each one and then - start them all with bus.start: + start them all with bus.start:: s1 = ServerAdapter(bus, MyWSGIServer(host='0.0.0.0', port=80)) s2 = ServerAdapter(bus, another.HTTPServer(host='127.0.0.1', SSL=True)) |