fix not-a-string when using english
[enigma2.git] / lib / python / Components / Network.py
index 444269fbe97467ce47470e2ce76ee6c4c02d6f93..99afb75db93c7dd946fc95353fe59006c24bd595 100644 (file)
@@ -123,7 +123,7 @@ class Network:
                ipstr = [0,0,0,0]
                for x in os.popen("ifconfig eth0 | grep 'inet addr:'", "r").readline().split(' '):
                        if x.split(':')[0] == "addr":
-                               ip = x.split(':')[1].split('.')
+                               ipstr = x.split(':')[1].split('.')
                ip = []
                for x in ipstr:
                        ip.append(int(x))