From 45b33dc48bd72b886adb6eaabe638840cd9a6772 Mon Sep 17 00:00:00 2001 From: Yaro Kasear Date: Fri, 2 May 2025 11:52:37 -0500 Subject: [PATCH] Add debug print statement to MAC vendor lookup for troubleshooting --- listener.py | 1 + 1 file changed, 1 insertion(+) diff --git a/listener.py b/listener.py index 76472dc..2a8a4f7 100755 --- a/listener.py +++ b/listener.py @@ -335,6 +335,7 @@ def get_mac_vendor(mac): urllib.request.urlretrieve(url, "oui.txt") with open("oui.txt", "r", encoding="utf-8", errors="ignore") as f: for line in f: + print(repr(line)) if line.strip().endswith("(hex)"): parts = line.split() if len(parts) >= 3: