summaryrefslogtreecommitdiffstats
path: root/network.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2003-07-11 01:35:32 +0000
committerMike Fulbright <msf@redhat.com>2003-07-11 01:35:32 +0000
commit46c12cc92d2d8389b6b1fe474c35ffa91fa70b22 (patch)
tree8792ad238c07c0f9c27655cba38be5f33f238b42 /network.py
parentaaa9579aac78c44a9a61cb177aeaf4dc05ae83c5 (diff)
downloadanaconda-46c12cc92d2d8389b6b1fe474c35ffa91fa70b22.tar.gz
anaconda-46c12cc92d2d8389b6b1fe474c35ffa91fa70b22.tar.xz
anaconda-46c12cc92d2d8389b6b1fe474c35ffa91fa70b22.zip
oops write out hwaddr even if description is not available
Diffstat (limited to 'network.py')
-rw-r--r--network.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/network.py b/network.py
index a03e2f134..049461503 100644
--- a/network.py
+++ b/network.py
@@ -223,8 +223,8 @@ class Network:
if desc is not None and len(desc) > 0:
self.netdevices[device].set(("desc", desc))
- # add hwaddr
- self.netdevices[device].set(("hwaddr", isys.getMacAddress(device)))
+ # add hwaddr
+ self.netdevices[device].set(("hwaddr", isys.getMacAddress(device)))
def getDevice(self, device):