Browse Source

fix: copy the default servers array

283
ThomasV 12 years ago
parent
commit
0d68926da2
  1. 2
      lib/interface.py

2
lib/interface.py

@ -331,7 +331,7 @@ class Interface(threading.Thread):
self.init_with_server(self.config)
else:
print "Using random server..."
servers = DEFAULT_SERVERS
servers = DEFAULT_SERVERS[:]
while servers:
server = random.choice( servers )
servers.remove(server)

Loading…
Cancel
Save