summaryrefslogtreecommitdiffstats
path: root/pyanaconda/network.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyanaconda/network.py')
-rw-r--r--pyanaconda/network.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/network.py b/pyanaconda/network.py
index c26275f49..067f3b1c8 100644
--- a/pyanaconda/network.py
+++ b/pyanaconda/network.py
@@ -441,7 +441,7 @@ class Network:
bootif_mac = None
if ksdevice == 'bootif' and "BOOTIF" in flags.cmdline:
bootif_mac = flags.cmdline["BOOTIF"][3:].replace("-", ":").upper()
- # sort for ksdevice=link (to select the same device as in loader))
+ # sort for ksdevice=link (to select the same device as in initrd))
for dev in sorted(self.netdevices):
mac = self.netdevices[dev].get('HWADDR').upper()
if ksdevice == 'link' and isys.getLinkStatus(dev):