Skip to content

Commit

Permalink
config file settable from env instead
Browse files Browse the repository at this point in the history
  • Loading branch information
ksanislo committed Dec 26, 2018
1 parent 762a9c0 commit a4e0368
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tcc-exporter
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ from http.cookiejar import LWPCookieJar
from http.server import HTTPServer, BaseHTTPRequestHandler
from urllib.error import HTTPError

VERSION = '0.9.2'
CONFIG_FILE = 'persistent/config.yml'
VERSION = '0.9.3'
CONFIG_FILE = os.environ.get('TCC_CONFIG_FILE', 'persistent/config.yml')
PREFIX = 'https://mytotalconnectcomfort.com/'

# Set your TCC_LOGLEVEL to either the string or index number for your base logging level.
Expand Down

0 comments on commit a4e0368

Please sign in to comment.