First, thanks for this great piece of work! It is exactly what I was looking for.
Here are two small points that I noticed when I wanted to install it on my Openhabian:
1.) Missing encoding at the beginning:
As your file is UTF-8 and there is no declaration at the beginning, others might get errors. Adding the following line to the top of the file fixes this:
# -*- coding: utf-8 -*-
2.) ConfigParser for python2.7 does not understand "fallback":
That means the current version is not compatible with python 2.7.
First, thanks for this great piece of work! It is exactly what I was looking for. Here are two small points that I noticed when I wanted to install it on my Openhabian:
1.) Missing encoding at the beginning: As your file is UTF-8 and there is no declaration at the beginning, others might get errors. Adding the following line to the top of the file fixes this:
# -*- coding: utf-8 -*-
2.) ConfigParser for python2.7 does not understand "fallback": That means the current version is not compatible with python 2.7.