You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: