Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Unified Diff: third_party/requests/packages/urllib3/contrib/ntlmpool.py

Issue 25004007: Update 'requests' lib to v2.0. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/swarm_client
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/requests/packages/urllib3/contrib/ntlmpool.py
diff --git a/third_party/requests/packages/urllib3/contrib/ntlmpool.py b/third_party/requests/packages/urllib3/contrib/ntlmpool.py
index 277ee0b2abf9175fe3927a539bd16d083217993f..b8cd933034cc48ef733209850380ec4ebdc79e10 100644
--- a/third_party/requests/packages/urllib3/contrib/ntlmpool.py
+++ b/third_party/requests/packages/urllib3/contrib/ntlmpool.py
@@ -33,7 +33,7 @@ class NTLMConnectionPool(HTTPSConnectionPool):
def __init__(self, user, pw, authurl, *args, **kwargs):
"""
authurl is a random URL on the server that is protected by NTLM.
- user is the Windows user, probably in the DOMAIN\username format.
+ user is the Windows user, probably in the DOMAIN\\username format.
pw is the password for the user.
"""
super(NTLMConnectionPool, self).__init__(*args, **kwargs)

Powered by Google App Engine
This is Rietveld 408576698