Skip to content

Commit

Permalink
Merge pull request #152 from rollbar/dan.s/ch16137/user-wants-to-see-…
Browse files Browse the repository at this point in the history
…http-method-in-python-pyramid

Add request.method to pyrollbar errors
  • Loading branch information
stclairdaniel authored Jan 13, 2017
2 parents c2a4d5f + 17cb07c commit 41d9691
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions rollbar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -922,6 +922,7 @@ def _build_webob_request_data(request):
'GET': dict(request.GET),
'user_ip': _extract_user_ip(request),
'headers': dict(request.headers),
'method': request.method,
}

try:
Expand Down

0 comments on commit 41d9691

Please sign in to comment.