aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Network.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-27 03:46:53 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-27 03:46:53 +0000
commite40c611f0cf2653a48571f0081cf193ebfd2ffcf (patch)
tree81e0722ed6fc06790ce76630bf471f3830e5a647 /lib/python/Components/Network.py
parente5be8d7dbdb42cc287d6ba65ecc3a08685412fc1 (diff)
downloadenigma2-e40c611f0cf2653a48571f0081cf193ebfd2ffcf.tar.gz
enigma2-e40c611f0cf2653a48571f0081cf193ebfd2ffcf.zip
fix very stupid error
Diffstat (limited to 'lib/python/Components/Network.py')
-rw-r--r--lib/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 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")