From cf157078cb6237fe07e2bdd3706373e3e28df51a Mon Sep 17 00:00:00 2001 From: Ken Sanislo Date: Thu, 27 Dec 2018 16:20:06 -0800 Subject: [PATCH] fix bad release --- tcc-exporter | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tcc-exporter b/tcc-exporter index 5a600d7..0d50255 100755 --- a/tcc-exporter +++ b/tcc-exporter @@ -17,7 +17,7 @@ from http.cookiejar import LWPCookieJar from http.server import HTTPServer, BaseHTTPRequestHandler from urllib.error import HTTPError -VERSION = '0.9.11' +VERSION = '0.9.12' CONFIG_FILE = os.environ.get('TCC_CONFIG_FILE', 'persistent/config.yml') PREFIX = 'https://mytotalconnectcomfort.com/' @@ -312,6 +312,7 @@ def main(): global client, config, devices devices = [] load_config() + find_devices() log('INFO', 'tcc-exporter/{0} [pid: {1}]'.format(VERSION, os.getpid())) signal.signal(signal.SIGHUP, hup_handler) signal.signal(signal.SIGUSR1, usr1_handler)