Changeset 1631
- Timestamp:
- 03/06/07 11:28:57
- Files:
-
- trunk/cherrypy/pywebd/base.py (modified) (1 diff)
- trunk/cherrypy/test/test_states_demo.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/pywebd/base.py
r1627 r1631 156 156 return "".join(traceback.format_exception(*exc)) 157 157 158 159 try:160 from cherrypy.pywebd import win32161 engine = win32.Engine()162 except ImportError:163 engine = Engine()trunk/cherrypy/test/test_states_demo.py
r1627 r1631 47 47 cherrypy.config.update(conf) 48 48 cherrypy.tree.mount(Root(), config={'global': conf}) 49 cherrypy.server.quickstart() 49 50 cherrypy.engine.start() 50 cherrypy.server.quickstart()51 51 cherrypy.engine.block()

