summaryrefslogtreecommitdiff
path: root/requests/models.py
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.org>2017-05-29 12:11:43 -0400
committerKenneth Reitz <me@kennethreitz.org>2017-05-29 12:11:43 -0400
commit7f14db17c8612aed71a181b084455b71e130ffc8 (patch)
treeaf0bdbaffebb36570f3c5f13bedecedcdfaeb08d /requests/models.py
parent14c1102e0fdc99e2b6fc170d8d02bcb20676e2ee (diff)
downloadpython-requests-7f14db17c8612aed71a181b084455b71e130ffc8.tar.gz
new requests namespace
Diffstat (limited to 'requests/models.py')
-rw-r--r--requests/models.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/requests/models.py b/requests/models.py
index b4a523d9..c22cc1c9 100644
--- a/requests/models.py
+++ b/requests/models.py
@@ -13,7 +13,7 @@ import sys
# Import encoding now, to avoid implicit import later.
# Implicit import within threads may cause LookupError when standard library is in a ZIP,
-# such as in Embedded Python. See https://github.com/kennethreitz/requests/issues/3578.
+# such as in Embedded Python. See https://github.com/requests/requests/issues/3578.
import encodings.idna
from urllib3.fields import RequestField
@@ -348,7 +348,7 @@ class PreparedRequest(RequestEncodingMixin, RequestHooksMixin):
#: We're unable to blindly call unicode/str functions
#: as this will include the bytestring indicator (b'')
#: on python 3.x.
- #: https://github.com/kennethreitz/requests/pull/2238
+ #: https://github.com/requests/requests/pull/2238
if isinstance(url, bytes):
url = url.decode('utf8')
else: