Browse Source

fix deserialize_proxy. fixes #1309

283
ThomasV 10 years ago
parent
commit
f894af90d7
  1. 2
      lib/network.py

2
lib/network.py

@ -92,7 +92,7 @@ def serialize_proxy(p):
return ':'.join([p.get('mode'),p.get('host'), p.get('port')])
def deserialize_proxy(s):
if type(s) != str:
if type(s) not in [str, unicode]:
return None
if s.lower() == 'none':
return None

Loading…
Cancel
Save