summaryrefslogtreecommitdiff
path: root/pecan/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'pecan/core.py')
-rw-r--r--pecan/core.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/pecan/core.py b/pecan/core.py
index a43f3de..fae1502 100644
--- a/pecan/core.py
+++ b/pecan/core.py
@@ -631,6 +631,12 @@ class PecanBase(object):
else:
if not isinstance(e, exc.HTTPException):
raise
+
+ # if this is an HTTP 405, attempt to specify an Allow header
+ if isinstance(e, exc.HTTPMethodNotAllowed) and controller:
+ allowed_methods = _cfg(controller).get('allowed_methods', [])
+ if allowed_methods:
+ state.response.allow = sorted(allowed_methods)
finally:
# handle "after" hooks
self.handle_hooks(