I’m in the process of moving my HASS environment from a raspberry pi to an emulated Ubuntu environment. Everything going well right up until I try to install and use Appdaemon - getting the following error on execution:
appdaemon -c /home/homeassistant/conf -D DEBUG
Traceback (most recent call last):
File "/usr/local/bin/appdaemon", line 11, in <module>
sys.exit(main())
File "/usr/local/lib/python3.5/dist-packages/appdaemon/admain.py", line 519, in main
run()
File "/usr/local/lib/python3.5/dist-packages/appdaemon/admain.py", line 50, in run
ad.run_ad(loop, tasks)
File "/usr/local/lib/python3.5/dist-packages/appdaemon/appdaemon.py", line 1363, in run_ad
read_apps(True)
File "/usr/local/lib/python3.5/dist-packages/appdaemon/appdaemon.py", line 1035, in read_apps
dependent_modules = find_dependent_modules(module)
File "/usr/local/lib/python3.5/dist-packages/appdaemon/appdaemon.py", line 975, in find_dependent_modules
if "dependencies" in conf.app_config[mod]:
TypeError: argument of type 'NoneType' is not iterable
Any ideas what I might be doing wrong?
Thanks for your help!
Tom