Update Functions.py

This commit is contained in:
Andrew Dinh 2019-09-08 22:17:29 -07:00 committed by GitHub
parent d1f3d594b1
commit fd4b3e831d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -152,6 +152,7 @@ def isConnected():
import socket # To check internet connection import socket # To check internet connection
try: try:
# connect to the host -- tells us if the host is actually reachable # connect to the host -- tells us if the host is actually reachable
socket.setdefaulttimeout(timeout)
socket.create_connection(('1.1.1.1', 53)) socket.create_connection(('1.1.1.1', 53))
print('Internet connection is good') print('Internet connection is good')
return True return True