Skip to content

Commit

Permalink
use web._InternalError instead of web.internalerror to stop failing w…
Browse files Browse the repository at this point in the history
…hen web.internalerror is over-written.
  • Loading branch information
anandology committed Dec 10, 2008
1 parent 0ef4992 commit f4cf5b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/debugerror.py
Expand Up @@ -296,7 +296,7 @@ def debugerror():
(Based on the beautiful 500 page from [Django](http://djangoproject.com/),
designed by [Wilson Miner](http://wilsonminer.com/).)
"""
return web.internalerror(djangoerror())
return web._InternalError(djangoerror())

def emailerrors(email_address, olderror):
"""
Expand Down

0 comments on commit f4cf5b2

Please sign in to comment.