Download Install Tutorial Docs FAQ Tools WikiLicense Team IRC Planet Involvement Shop Book

Changeset 833

Show
Ignore:
Timestamp:
11/23/05 15:04:43
Author:
fumanchu
Message:

The added page_handler arg should be last, not first.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/cherrypy/_cphttptools.py

    r827 r833  
    227227                    body = page_handler(*virtual_path, **self.paramMap) 
    228228                except Exception, x: 
    229                     x.args = (page_handler,) + x.args 
     229                    x.args = x.args + (page_handler,) 
    230230                    raise 
    231231                cherrypy.response.body = iterable(body) 

Hosted by WebFaction

Log in as guest/cpguest to create tickets