From 0757605627e161bd9c666b6434ab5ace536565d1 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Mon, 14 Jul 2008 14:36:13 +0000 Subject: [PATCH 1/1] move comment before multi line command to make python happy --- lib/python/Components/Network.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/python/Components/Network.py b/lib/python/Components/Network.py index 03602f29..d94fa30c 100644 --- a/lib/python/Components/Network.py +++ b/lib/python/Components/Network.py @@ -294,9 +294,10 @@ class Network: self.getInterfaces() def checkNetworkState(self): - return system("ping -c 1 82.149.226.170") == 0 or \ # www.dream-multimedia-tv.de - system("ping -c 1 193.99.144.85") == 0 or \ # www.heise.de - system("ping -c 1 209.85.135.103") == 0 # www.google.de + # www.dream-multimedia-tv.de, www.heise.de, www.google.de + return system("ping -c 1 82.149.226.170") == 0 or \ + system("ping -c 1 193.99.144.85") == 0 or \ + system("ping -c 1 209.85.135.103") == 0 def restartNetwork(self): iNetwork.deactivateNetworkConfig() -- 2.30.2