Closed robin7331 closed 3 years ago
This should fix #35
There was a try: without a corresponding except: in plugin.py. I removed the try block entirely because instead of having pass the except Any occurring exception should now be logged to the kibuzzard.log or error.log.
try:
except:
plugin.py
except
kibuzzard.log
error.log
This works for me! Still facing issue #30, but at least it works on startup. Thanks!
This should fix #35
There was a
try:
without a correspondingexcept:
inplugin.py
. I removed the try block entirely because instead of having pass theexcept
Any occurring exception should now be logged to thekibuzzard.log
orerror.log
.