summaryrefslogtreecommitdiff
path: root/cherrypy/test/modpy.py
diff options
context:
space:
mode:
authorRobert Brewer <fumanchu@aminus.org>2006-05-07 06:08:24 +0000
committerRobert Brewer <fumanchu@aminus.org>2006-05-07 06:08:24 +0000
commit04770b41627d0995cb00f6b3f8450813190d1010 (patch)
tree25b3f3f794ecc2b2174a93f0e1ae1803e2105d7a /cherrypy/test/modpy.py
parentab9fbb1bb8ab9d02cd3ceb143ff185dfc4fb4076 (diff)
downloadcherrypy-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.py4
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)