Fix #755 - Can't set listen_ports through console UI
This commit is contained in:
parent
e1896d2ace
commit
c379b6c3b2
|
@ -60,7 +60,10 @@ def atom(next, token):
|
||||||
return tuple(out)
|
return tuple(out)
|
||||||
elif token[0] is tokenize.NUMBER or token[1] == "-":
|
elif token[0] is tokenize.NUMBER or token[1] == "-":
|
||||||
try:
|
try:
|
||||||
return int(token[-1], 0)
|
if token[1] == "-":
|
||||||
|
return int(token[-1], 0)
|
||||||
|
else:
|
||||||
|
return int(token[1], 0)
|
||||||
except ValueError:
|
except ValueError:
|
||||||
return float(token[-1])
|
return float(token[-1])
|
||||||
elif token[1].lower() == 'true':
|
elif token[1].lower() == 'true':
|
||||||
|
|
Loading…
Reference in New Issue