summaryrefslogtreecommitdiff
path: root/oauthlib
diff options
context:
space:
mode:
authorOmer Katz <omer.drow@gmail.com>2019-08-26 17:08:46 +0300
committerGitHub <noreply@github.com>2019-08-26 17:08:46 +0300
commit86da2ec58789adc1d1d98ac9f8c9703863e6f1ef (patch)
treea0f1e314754a9faf6ead661402a9af7d770fb306 /oauthlib
parent8a26eaa8947cb0e3e5b2dadc38fb157b097d5a42 (diff)
parent4da9ae0e988bbccefe5c0ad8370812be8cf92f0e (diff)
downloadoauthlib-86da2ec58789adc1d1d98ac9f8c9703863e6f1ef.tar.gz
Merge branch 'master' into doc-improvement
Diffstat (limited to 'oauthlib')
-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