ffes / domoticz-buienradar

Domoticz Buienradar.nl Weather Lookup Plugin
MIT License
14 stars 5 forks source link

Fatal signal 11 on domoticz beta caused by use of positional parameter in plugin.py #10

Closed rwaaren closed 5 years ago

rwaaren commented 6 years ago

triggered by the description on Github (https://github.com/domoticz/domoticz/issues/2092), I changed line 177 in plugin.py of the buienradar plugin. CODE: SELECT ALL

# old line with positional parameters this line will trigger a fatal signal 11 on my system Devices[Unit].Update(nValue, str(sValue)) # New line with named parameters Devices[Unit].Update(nValue=nValue, sValue=str(sValue)) With this change my local compiled domoticz keeps running.