summaryrefslogtreecommitdiff
path: root/oauthlib/oauth1/rfc5849/signature.py
diff options
context:
space:
mode:
authorOmer Katz <omer.drow@gmail.com>2019-08-26 17:07:53 +0300
committerGitHub <noreply@github.com>2019-08-26 17:07:53 +0300
commit00c7a2e17013fa9009080de8c41243259c0307e5 (patch)
treeb86681b9106fb11ab8598b1d34a3ac282ebd2f2a /oauthlib/oauth1/rfc5849/signature.py
parente4e3aeb47b94f8bf2a6cfbe214721494955653af (diff)
parent4da9ae0e988bbccefe5c0ad8370812be8cf92f0e (diff)
downloadoauthlib-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.py4
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