fix: py3 network_dialog - dict.keys() returns dict_keys(list) instead of list

This commit is contained in:
SomberNight 2017-10-03 05:33:01 +02:00
parent 031b911dce
commit 6353f1a8f0
1 changed files with 2 additions and 2 deletions

View File

@ -391,7 +391,7 @@ class NetworkChoiceLayout(object):
host = self.server_host.text()
pp = self.servers.get(host, DEFAULT_PORTS)
if p not in pp.keys():
p = pp.keys()[0]
p = list(pp.keys())[0]
port = pp[p]
self.server_host.setText(host)
self.server_port.setText(port)
@ -426,7 +426,7 @@ class NetworkChoiceLayout(object):
protocol = 's'
port = pp.get(protocol)
else:
protocol = pp.keys()[0]
protocol = list(pp.keys())[0]
port = pp.get(protocol)
self.server_host.setText(host)
self.server_port.setText(port)