mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Python2.4 compat fix
This commit is contained in:
parent
12e3a2a0c1
commit
d2346fd2e2
1 changed files with 1 additions and 1 deletions
|
@ -652,7 +652,7 @@ def open_url(url, data=None, headers=None, method=None, use_proxy=True,
|
|||
if headers is None:
|
||||
headers = {}
|
||||
|
||||
headers["Authorization"] = "Basic {0}".format(base64.b64encode("{0}:{1}".format(username, password)))
|
||||
headers["Authorization"] = "Basic %s" % base64.b64encode("%s:%s" % (username, password))
|
||||
|
||||
if not use_proxy:
|
||||
proxyhandler = urllib2.ProxyHandler({})
|
||||
|
|
Loading…
Reference in a new issue