diff options
author | Ian Bicking <ian@ianbicking.org> | 2005-08-22 21:59:18 +0000 |
---|---|---|
committer | Ian Bicking <ian@ianbicking.org> | 2005-08-22 21:59:18 +0000 |
commit | 3d78accae2b421591daae5d1c10f948f2c070436 (patch) | |
tree | d4a7bc3a780dbc9de6c0e2e9cd576412fa0a6be2 /paste/httpexceptions.py | |
parent | 6be5aafda33852aa667f95ace3214e0c696c85b9 (diff) | |
download | paste-git-3d78accae2b421591daae5d1c10f948f2c070436.tar.gz |
paste.deployified httpexceptions
Diffstat (limited to 'paste/httpexceptions.py')
-rw-r--r-- | paste/httpexceptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/httpexceptions.py b/paste/httpexceptions.py index 16fca6f..5f8405f 100644 --- a/paste/httpexceptions.py +++ b/paste/httpexceptions.py @@ -211,7 +211,7 @@ def get_exception(code): ## Middleware implementation: ############################################################ -def middleware(application): +def middleware(application, global_conf): """ This middleware catches any exceptions (which are subclasses of |