fix systemrandom shuffle
This commit is contained in:
parent
6a4744997c
commit
eec8c356ad
@ -25,9 +25,9 @@ from .readstatic import read_static
|
|||||||
def check_network(torPort=0) -> bool:
|
def check_network(torPort=0) -> bool:
|
||||||
"""Check if we are connected to the internet (through Tor)."""
|
"""Check if we are connected to the internet (through Tor)."""
|
||||||
success = False
|
success = False
|
||||||
connect_urls = []
|
|
||||||
try:
|
try:
|
||||||
connect_urls = SystemRandom().shuffle(read_static('connect-check.txt').split(','))
|
connect_urls = read_static('connect-check.txt').split(',')
|
||||||
|
SystemRandom().shuffle(connect_urls)
|
||||||
|
|
||||||
for url in connect_urls:
|
for url in connect_urls:
|
||||||
if basicrequests.do_get_request(
|
if basicrequests.do_get_request(
|
||||||
|
Loading…
Reference in New Issue
Block a user