fix: copy the default servers array

This commit is contained in:
ThomasV 2012-10-22 18:50:17 +02:00
parent 3a23e54a1a
commit 0d68926da2

View file

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