We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f95fddc commit e316a71Copy full SHA for e316a71
src/vws/vws.py
@@ -50,7 +50,7 @@ def _target_api_request(
50
Returns:
51
The response to the request made by `requests`.
52
"""
53
- date = rfc_1123_date()
+ date_string = rfc_1123_date()
54
content_type = 'application/json'
55
56
signature_string = authorization_header(
@@ -59,7 +59,7 @@ def _target_api_request(
59
method=method,
60
content=content,
61
content_type=content_type,
62
- date=date,
+ date=date_string,
63
request_path=request_path,
64
)
65
0 commit comments