Ticket #641: routes_handler_config.patch
-
cherrypy/_cpdispatch.py
old new 300 300 action = result.get('action', None) 301 301 if action is not None: 302 302 handler = getattr(controller, action) 303 # Get config from the handler 304 if hasattr(handler, "_cp_config"): 305 merge(handler._cp_config) 303 306 304 307 # Do the last path atom here so it can 305 308 # override the controller's _cp_config.

