diff options
author | Christian Wyglendowski <devnull@localhost> | 2006-12-22 19:03:35 +0000 |
---|---|---|
committer | Christian Wyglendowski <devnull@localhost> | 2006-12-22 19:03:35 +0000 |
commit | 8d026b244bef73ff967ee261c9973c2dd38d4aa6 (patch) | |
tree | 77717671f291268fd3985a7cc6c635daf167db31 | |
parent | 5a88b220f4a3f3cbffd8721c75d0b731fb039cfe (diff) | |
download | cherrypy-3.0.0.tar.gz |
Fix for #627.cherrypy-3.0.0
-rw-r--r-- | cherrypy/_cpconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cherrypy/_cpconfig.py b/cherrypy/_cpconfig.py index f183a44d..2c9a84e4 100644 --- a/cherrypy/_cpconfig.py +++ b/cherrypy/_cpconfig.py @@ -228,7 +228,7 @@ class Config(dict): if isinstance(config.get("global", None), dict): if len(config) > 1: - cherrypy.checker.global_config_contained_paths = True + cherrypy.engine.checker.global_config_contained_paths = True config = config["global"] if 'environment' in config: |