[tuxdroid-svn] r5077 - software_suite_v3/smart-core/smart-server/trunk/util/misc
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-07-08 07:06:28
|
Author: remi Date: 2009-07-08 08:40:46 +0200 (Wed, 08 Jul 2009) New Revision: 5077 Modified: software_suite_v3/smart-core/smart-server/trunk/util/misc/URLTools.py Log: * Url to check must start by "http://" Modified: software_suite_v3/smart-core/smart-server/trunk/util/misc/URLTools.py =================================================================== --- software_suite_v3/smart-core/smart-server/trunk/util/misc/URLTools.py 2009-07-08 06:36:37 UTC (rev 5076) +++ software_suite_v3/smart-core/smart-server/trunk/util/misc/URLTools.py 2009-07-08 06:40:46 UTC (rev 5077) @@ -23,7 +23,7 @@ # ------------------------------------------------------------------------------ # Check the internet connection. # ------------------------------------------------------------------------------ -def URLCheckConnection(urlToCheck = "www.kysoh.com"): +def URLCheckConnection(urlToCheck = "http://www.kysoh.com"): """Check the internet connection. @param urlToCheck: Check connection with this url. @return: The internet connection state. |