components/python/requests/patches/python3.patch
changeset 1907 446472de62e9
equal deleted inserted replaced
1906:06b8097543cd 1907:446472de62e9
       
     1 A one-line fix from upstream to fix a byte-compilation issue in Python 3.
       
     2 
       
     3 --- requests-1.2.3/requests/packages/urllib3/contrib/ntlmpool.py.orig~	2013-04-30 10:39:29.000000000 -0700
       
     4 +++ requests-1.2.3/requests/packages/urllib3/contrib/ntlmpool.py	2014-04-17 08:33:25.770194371 -0700
       
     5 @@ -33,7 +33,7 @@
       
     6      def __init__(self, user, pw, authurl, *args, **kwargs):
       
     7          """
       
     8          authurl is a random URL on the server that is protected by NTLM.
       
     9 -        user is the Windows user, probably in the DOMAIN\username format.
       
    10 +        user is the Windows user, probably in the DOMAIN\\username format.
       
    11          pw is the password for the user.
       
    12          """
       
    13          super(NTLMConnectionPool, self).__init__(*args, **kwargs)