Skip to content

Commit

Permalink
Use augmented assignment statements (#797)
Browse files Browse the repository at this point in the history
Fixes #796
  • Loading branch information
ocelotl committed Nov 10, 2021
1 parent d4ad8f5 commit 5f1845d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def collect_request_attributes(scope):
if query_string and http_url:
if isinstance(query_string, bytes):
query_string = query_string.decode("utf8")
http_url = http_url + ("?" + urllib.parse.unquote(query_string))
http_url += "?" + urllib.parse.unquote(query_string)

result = {
SpanAttributes.HTTP_SCHEME: scope.get("scheme"),
Expand Down

0 comments on commit 5f1845d

Please sign in to comment.