[oe-commits] [bitbake] 02/04: fetch2/wget: Fix typo in proxy handling

git at git.openembedded.org git at git.openembedded.org
Mon Mar 18 11:13:57 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository bitbake.

commit a2c4b26f3e260ad1db8e6fe9ebc2671206d8c541
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Sat Mar 16 13:02:53 2019 +0000

    fetch2/wget: Fix typo in proxy handling
    
    Fix a typo in a variable which would affect proxy handling spotted by
    pylint.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/fetch2/wget.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/fetch2/wget.py b/lib/bb/fetch2/wget.py
index a889255..fb3b903 100644
--- a/lib/bb/fetch2/wget.py
+++ b/lib/bb/fetch2/wget.py
@@ -296,7 +296,7 @@ class Wget(FetchMethod):
         exported_proxies = export_proxies(d)
 
         handlers = [FixedHTTPRedirectHandler, HTTPMethodFallback]
-        if export_proxies:
+        if exported_proxies:
             handlers.append(urllib.request.ProxyHandler())
         handlers.append(CacheHTTPHandler())
         # XXX: Since Python 2.7.9 ssl cert validation is enabled by default

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list