From 542b65f0b2cb32f74ff2a1b998571ea0a37d4aa8 Mon Sep 17 00:00:00 2001 From: Kai Wansart Date: Fri, 2 Feb 2018 20:31:59 +0100 Subject: [PATCH] wol fix --- app/devices/wol.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/devices/wol.py b/app/devices/wol.py index ec61ff4..216f613 100644 --- a/app/devices/wol.py +++ b/app/devices/wol.py @@ -36,6 +36,7 @@ class WOL(object): def wakeDevice(self, device): ##-----------------------------------------------------------------------------------## if(device in self.devices): + print("Waking up Device: " + device + " mac: " + self.devices[device]") wol.send_magic_packet(self.devices[device])