Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/networking.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-11-29 20:17:21 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-11-29 20:17:21 +0000
commit607de557f9d357758730da6d6decd651d92d845b (patch)
tree333a852617f2024c1205e8aa4e74c3720ada92b2 /archinstall/lib/networking.py
parent77e37823748acc30ea74d75da2c7d20dca4acfcd (diff)
Removed find_examples() and moved example finding paths into archinstall.storage. Otherwise they won't share the variable instance across imports (mutables vs non-mutables i guess). In an attempt to fix #62
Diffstat (limited to 'archinstall/lib/networking.py')
-rw-r--r--archinstall/lib/networking.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/networking.py b/archinstall/lib/networking.py
index d24bb911..7832cf07 100644
--- a/archinstall/lib/networking.py
+++ b/archinstall/lib/networking.py
@@ -15,6 +15,6 @@ def list_interfaces(skip_loopback=True):
if skip_loopback and iface == "lo":
continue
- mac = getHwAddr(iface).replace(':', '-')
+ mac = getHwAddr(iface).replace(':', '-').lower()
interfaces[mac] = iface
return interfaces