diff options
author | Omer Katz <omer.drow@gmail.com> | 2019-08-26 17:07:53 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-26 17:07:53 +0300 |
commit | 00c7a2e17013fa9009080de8c41243259c0307e5 (patch) | |
tree | b86681b9106fb11ab8598b1d34a3ac282ebd2f2a /oauthlib/oauth1/rfc5849/signature.py | |
parent | e4e3aeb47b94f8bf2a6cfbe214721494955653af (diff) | |
parent | 4da9ae0e988bbccefe5c0ad8370812be8cf92f0e (diff) | |
download | oauthlib-drop-3.4.tar.gz |
Merge branch 'master' into drop-3.4drop-3.4
Diffstat (limited to 'oauthlib/oauth1/rfc5849/signature.py')
-rw-r--r-- | oauthlib/oauth1/rfc5849/signature.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oauthlib/oauth1/rfc5849/signature.py b/oauthlib/oauth1/rfc5849/signature.py index a60bee2..243a586 100644 --- a/oauthlib/oauth1/rfc5849/signature.py +++ b/oauthlib/oauth1/rfc5849/signature.py @@ -90,7 +90,7 @@ def signature_base_string(http_method, base_str_uri, # (`Section 3.6`_). # # .. _`Section 3.4.1.2`: https://tools.ietf.org/html/rfc5849#section-3.4.1.2 - # .. _`Section 3.4.6`: https://tools.ietf.org/html/rfc5849#section-3.4.6 + # .. _`Section 3.6`: https://tools.ietf.org/html/rfc5849#section-3.6 base_string += utils.escape(base_str_uri) # 4. An "&" character (ASCII code 38). @@ -100,7 +100,7 @@ def signature_base_string(http_method, base_str_uri, # being encoded (`Section 3.6`). # # .. _`Section 3.4.1.3.2`: https://tools.ietf.org/html/rfc5849#section-3.4.1.3.2 - # .. _`Section 3.4.6`: https://tools.ietf.org/html/rfc5849#section-3.4.6 + # .. _`Section 3.6`: https://tools.ietf.org/html/rfc5849#section-3.6 base_string += utils.escape(normalized_encoded_request_parameters) return base_string |