diff options
author | Robert Brewer <fumanchu@aminus.org> | 2006-05-07 06:08:24 +0000 |
---|---|---|
committer | Robert Brewer <fumanchu@aminus.org> | 2006-05-07 06:08:24 +0000 |
commit | 04770b41627d0995cb00f6b3f8450813190d1010 (patch) | |
tree | 25b3f3f794ecc2b2174a93f0e1ae1803e2105d7a /cherrypy/test/modpy.py | |
parent | ab9fbb1bb8ab9d02cd3ceb143ff185dfc4fb4076 (diff) | |
download | cherrypy-git-04770b41627d0995cb00f6b3f8450813190d1010.tar.gz |
Moved the following config keys out of the "server." namespace (so that "server." may mean "httpserver"):
* default_content_type
* log_access_file
* log_config_options
* log_file
* log_file_not_found
* log_request_headers
* log_to_screen
* show_tracebacks
* throw_errors
Diffstat (limited to 'cherrypy/test/modpy.py')
-rw-r--r-- | cherrypy/test/modpy.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cherrypy/test/modpy.py b/cherrypy/test/modpy.py index 3b3b9305..805fc640 100644 --- a/cherrypy/test/modpy.py +++ b/cherrypy/test/modpy.py @@ -81,8 +81,8 @@ def handler(req): m = __import__(('cherrypy.test.%s' % testmod), globals(), locals(), ['']) import cherrypy cherrypy.config.update({ - "server.log_file": os.path.join(curdir, "test.log"), - "server.environment": "production", + "log_file": os.path.join(curdir, "test.log"), + "environment": "production", }) m.setup_server() cherrypy.engine.start(blocking=False) |