git.graph-it.com
/
graphit
/
controlpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a6482ee
)
Add forgotten super() calls in util.py
author
Benjamin Braatz
<bb@bbraatz.eu>
Tue, 2 Mar 2021 21:29:18 +0000
(22:29 +0100)
committer
Benjamin Braatz
<bb@bbraatz.eu>
Tue, 2 Mar 2021 21:29:18 +0000
(22:29 +0100)
controlpi/plugins/util.py
patch
|
blob
|
history
diff --git
a/controlpi/plugins/util.py
b/controlpi/plugins/util.py
index a3687a8c9ab3fb0dfad88cbd19619a0c43cbb015..0e598a23a8e9355b02f4271fbb80c1dc1c358ba2 100644
(file)
--- a/
controlpi/plugins/util.py
+++ b/
controlpi/plugins/util.py
@@
-68,6
+68,7
@@
class Alias(BasePlugin):
self._from = conf['from']
self._to = conf['to']
self._bus.register(self._name, [self._to], [self._from], self._alias)
+ super()._process_conf(conf)
class State(BasePlugin):
@@
-93,3
+94,4
@@
class State(BasePlugin):
'command': 'set state',
'state': bool}]
self._bus.register(self._name, sends, receives, self._receive)
+ super()._process_conf(conf)