Przeglądaj źródła

BugFix: All off functionality

tags/v1.3.0
Dirk Alders 1 rok temu
rodzic
commit
e565dd717b
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1
    1
      function/rooms.py

+ 1
- 1
function/rooms.py Wyświetl plik

@@ -22,7 +22,7 @@ class room(object):
22 22
         logger.info("Switching all off \"%s\"", type(self).__name__)
23 23
         for name, obj in inspect.getmembers(self):
24 24
             try:
25
-                if obj.__module__ == 'devices':
25
+                if obj.__module__.startswith('devices'):
26 26
                     obj.all_off()
27 27
             except AttributeError:
28 28
                 pass    # not a module or has no method all_off

Ładowanie…
Anuluj
Zapisz