From 71c64b2c263e5f727343f6560a13d38ffe04b095 Mon Sep 17 00:00:00 2001 From: enkore Date: Mon, 11 Feb 2013 15:52:52 +0100 Subject: [PATCH] As far as I can tell that IP address is down (both ping and nmap -Pn confirm this) --- statushandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/statushandler.py b/statushandler.py index 560513f..969ab35 100644 --- a/statushandler.py +++ b/statushandler.py @@ -66,7 +66,7 @@ class I3statusHandler(object): def has_internet_connection(): try: - response=urllib2.urlopen('http://74.125.113.99',timeout=1) + response=urllib2.urlopen('http://173.194.69.94',timeout=1) return True except urllib2.URLError as err: pass return False