From f6f64b6265507042825e792ed6ce077c4e44f3dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Tue, 13 Feb 2024 00:12:33 +0100 Subject: [PATCH] fixed mac address MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- server/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/app.py b/server/app.py index cd093e4..b38387d 100644 --- a/server/app.py +++ b/server/app.py @@ -10,7 +10,7 @@ import netifaces app = Flask(__name__) -wlan_mac_address = get_mac_address(interface="wlan0") +wlan_mac_address = str(get_mac_address(interface="wlan0")) # Read configuration from config.json try: