PluginBrowser.py: dont use "ipkg list_installed" on second run if "Download Plugins...
[enigma2.git] / lib / python / Components / Network.py
index 31a90282c3d1e35279850ced51625eeae7c717a8..f65d6090c3c8e699d901ab6778cd0ad97f2ee8a4 100755 (executable)
@@ -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: