Download Install Tutorial Docs FAQ Tools WikiLicense Team IRC Planet Involvement Shop Book

Changeset 1408

Show
Ignore:
Timestamp:
10/23/06 12:07:14
Author:
lawouach
Message:

dict can't be updated with None value.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/cherrypy/__init__.py

    r1404 r1408  
    2525def quickstart(root, script_name="", config=None): 
    2626    """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) 
    2829    tree.mount(root, script_name, config) 
    2930    server.quickstart() 

Hosted by WebFaction

Log in as guest/cpguest to create tickets