Quellcode durchsuchen

BugFix: All off functionality

tags/v1.3.0
Dirk Alders vor 1 Jahr
Ursprung
Commit
e565dd717b
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      function/rooms.py

+ 1
- 1
function/rooms.py Datei anzeigen

@@ -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

Laden…
Abbrechen
Speichern