Comment 4 for bug 1034207

Revision history for this message
Giovanni Mellini (merlos) wrote :

Ok I did some invastigation and I found the cause of the prioblem.
The problem is in the file /opt/extras.ubuntu.com/fogger/fogger/FoggerWindow.py function verify_url()
Seems that the parameter proxies=proxies sent to the requests.get function is not well interpreted from the function itself.

On my system I have a proxy setup (just for my job) but when I go to my house I unset (via GUI) the proxy.
While trying fogger I unset the proxy but seems that the function get the wrong info from system

After modifying file /opt/extras.ubuntu.com/fogger/fogger/FoggerWindow.py function verify_url() removing proxy settings as follows, I got fogger working

line 193: response = requests.get(url, proxies=proxies)
modified line 193: response = requests.get(url)

Hope this help