fix deserialize_proxy. fixes #1309

This commit is contained in:
ThomasV 2015-06-23 14:22:10 +02:00
parent 74d26f5bdc
commit f894af90d7
1 changed files with 1 additions and 1 deletions

View File

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