aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Network.py
diff options
context:
space:
mode:
authoracid-burn <acidburn@opendreambox.org>2009-07-22 08:41:27 +0200
committeracid-burn <acidburn@opendreambox.org>2009-07-22 08:41:27 +0200
commit7cc28be2015e4ebb56d585c9cee2949138e4d67e (patch)
treee0e98cea0e05b6ac2f6a7a7723226f1a6e07c339 /lib/python/Components/Network.py
parenta6f7c725e21a4b6ed064e92b453331837d12f267 (diff)
downloadenigma2-7cc28be2015e4ebb56d585c9cee2949138e4d67e.tar.gz
enigma2-7cc28be2015e4ebb56d585c9cee2949138e4d67e.zip
properly update statusbar after network restart
also ignore wmaster0 interface
Diffstat (limited to 'lib/python/Components/Network.py')
-rwxr-xr-xlib/python/Components/Network.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/Network.py b/lib/python/Components/Network.py
index 31a90282..f65d6090 100755
--- a/lib/python/Components/Network.py
+++ b/lib/python/Components/Network.py
@@ -46,7 +46,7 @@ class Network:
for line in result:
try:
device = devicesPattern.search(line).group()
- if device == 'wifi0':
+ if device in ('wifi0', 'wmaster0'):
continue
self.getDataForInterface(device, callback)
except AttributeError: