Fixed the the way proxy settings is sent to eveapi
This commit is contained in:
@@ -125,8 +125,9 @@ class PFGlobalPref ( PreferenceView):
|
||||
|
||||
proxy = self.proxySettings.autodetect()
|
||||
|
||||
if proxy:
|
||||
txt = proxy
|
||||
if proxy is not None:
|
||||
addr,port = proxy
|
||||
txt = addr + ":" + str(port)
|
||||
else:
|
||||
txt = "None"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user