Changeset 425
- Timestamp:
- 07/07/05 14:29:15
- Files:
-
- trunk/cherrypy/config.py (modified) (2 diffs)
- trunk/cherrypy/lib/covercp.py (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/config.py
r423 r425 63 63 reset() 64 64 65 def update(updateMap=None, file=None, override = False):65 def update(updateMap=None, file=None, override = True): 66 66 """ Update the configMap from a dictionary or a config file. 67 67 If override is True then the update will not modify … … 76 76 section = 'global' 77 77 sectionMap = configMap.setdefault(section, {}) 78 if notoverride:78 if override: 79 79 sectionMap.update(valueMap) 80 80 else:

