fix very stupid error
[enigma2.git] / lib / python / Components / Network.py
index 444269fbe97467ce47470e2ce76ee6c4c02d6f93..8375d23552cbdfbd5da5f28fd8b0c434ca970381 100644 (file)
@@ -12,7 +12,7 @@ class Network:
                # fixme using interfaces.tmp instead of interfaces for now
                fp = file('/etc/network/interfaces', 'w')
                fp.write("auto eth0\n")
-               if (config.network.dhcp.value == _("yes")):
+               if (config.network.dhcp.value == 1):
                        fp.write("iface eth0 inet dhcp\n")
                else:
                        fp.write("iface eth0 inet static\n")
@@ -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))