1
0

fix: random_choice -> random.choice

This commit is contained in:
ThomasV
2012-10-20 17:21:12 +02:00
parent 97b726386e
commit fff922b5d7
2 changed files with 7 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ proxy_modes = ['socks4', 'socks5', 'http']
def pick_random_server():
return random_choice( DEFAULT_SERVERS )
return random.choice( DEFAULT_SERVERS )
def pick_random_interface():
servers = DEFAULT_SERVERS