Changeset 5281
- Timestamp:
- 08/28/08 01:20:20 (4 months ago)
- Files:
-
- trunk/tg/configuration.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tg/configuration.py
r5279 r5281 111 111 return self[name] 112 112 except KeyError: 113 return get_partial_dict(name, self) 114 #if both getitem, and partial-dict matches fail we're done 113 115 raise AttributeError(name) 114 116 … … 256 258 object 257 259 """ 258 260 global_conf=Bunch(global_conf) 261 app_conf=Bunch(app_conf) 259 262 self.setup_paths() 260 263 self.init_config(global_conf, app_conf)