From e40c611f0cf2653a48571f0081cf193ebfd2ffcf Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Tue, 27 Dec 2005 03:46:53 +0000 Subject: [PATCH] fix very stupid error --- lib/python/Components/Network.py | 2 +- lib/python/Plugins/update.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/python/Components/Network.py b/lib/python/Components/Network.py index 99afb75d..8375d235 100644 --- a/lib/python/Components/Network.py +++ b/lib/python/Components/Network.py @@ -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") diff --git a/lib/python/Plugins/update.py b/lib/python/Plugins/update.py index 01e986e8..a1525cf3 100644 --- a/lib/python/Plugins/update.py +++ b/lib/python/Plugins/update.py @@ -30,7 +30,6 @@ class Example(Screen): def doUpdate(self, val = False): if val: - print "updating" lines = os.popen("ipkg update && ipkg upgrade", "r").readlines() string = "" for x in lines: -- 2.30.2