Skip to content

Commit 859507b

Browse files
authored
Update googleDriveTest.py
1 parent e8293cc commit 859507b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/googleDriveTest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@
2727
sta_if.disconnect()
2828
except:
2929
pass
30-
redes = sta_if.scan()
30+
localNetworks = sta_if.scan()
3131

3232
knownSsid = [b'put',b'your',b'known',b'essid-here']
3333
knownPasswd = [b'put',b'known-essid',b'passwords',b'here']
3434

3535
ssidmode = False
3636
for i in range (0,len(knownSsid)):
37-
for j in range (0,len(redes)):
37+
for j in range (0,len(localNetworks)):
3838
print("Compare {} with {}".format(knownSsid[i],redes[j][0]))
3939
if (knownSsid[i]==redes[j][0]):
4040
print("Connecting to {}".format(knownSsid[i]))

0 commit comments

Comments
 (0)