diff --git a/Functions.py b/Functions.py index d27f362..47ca0d7 100644 --- a/Functions.py +++ b/Functions.py @@ -152,6 +152,7 @@ def isConnected(): import socket # To check internet connection try: # connect to the host -- tells us if the host is actually reachable + socket.setdefaulttimeout(timeout) socket.create_connection(('1.1.1.1', 53)) print('Internet connection is good') return True