ソースを参照

BugFix: All off functionality

tags/v1.3.0
Dirk Alders 1年前
コミット
e565dd717b
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      function/rooms.py

+ 1
- 1
function/rooms.py ファイルの表示

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

読み込み中…
キャンセル
保存