Fixed the the way proxy settings is sent to eveapi

This commit is contained in:
HomeWorld
2011-12-23 22:02:39 +02:00
parent fb46f742dd
commit c51a1400e1
3 changed files with 9 additions and 8 deletions

View File

@@ -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"