aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/Network.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/python/Components/Network.py b/lib/python/Components/Network.py
index 6d28b19d..c38c44c6 100644
--- a/lib/python/Components/Network.py
+++ b/lib/python/Components/Network.py
@@ -14,7 +14,6 @@ class Network:
fp.write("auto eth0\n")
if (config.network.dhcp.value == _("yes")):
fp.write("iface eth0 inet dhcp\n")
- fp.write(" address %d.%d.%d.%d\n" % tuple(config.network.ip.value))
else:
fp.write("iface eth0 inet static\n")
fp.write(" address %d.%d.%d.%d\n" % tuple(config.network.ip.value))