Changeset 1408
- Timestamp:
- 10/23/06 12:07:14
- Files:
-
- trunk/cherrypy/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/__init__.py
r1404 r1408 25 25 def quickstart(root, script_name="", config=None): 26 26 """Mount the given app, start the engine and builtin server, then block.""" 27 _global_conf_alias.update(config) 27 if config: 28 _global_conf_alias.update(config) 28 29 tree.mount(root, script_name, config) 29 30 server.quickstart()

