Skip to content

Commit

Permalink
_build_werkzeug_request_data list() for files_keys (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
Todd Palmer authored and rokob committed May 16, 2018
1 parent cef622d commit bda9db2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rollbar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,7 @@ def _build_werkzeug_request_data(request):
'user_ip': _extract_user_ip(request),
'headers': dict(request.headers),
'method': request.method,
'files_keys': request.files.keys(),
'files_keys': list(request.files.keys()),
}

try:
Expand Down

0 comments on commit bda9db2

Please sign in to comment.