From 19e2113bcd9704e1437b75f824a610a40382aa46 Mon Sep 17 00:00:00 2001 From: Patrick McDonagh Date: Fri, 22 Jan 2016 18:40:32 -0600 Subject: [PATCH] Printing tag list on startup --- python/tagserver_SQLite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tagserver_SQLite.py b/python/tagserver_SQLite.py index ee31115..05e3262 100644 --- a/python/tagserver_SQLite.py +++ b/python/tagserver_SQLite.py @@ -34,7 +34,7 @@ def main(): if len(tags) > 0: for t in tags: tagList.append({"id": int(t[0]), "name": t[1], "val": None, "lastVal": None}) - + print(tagList) # try: tux = TuxEIP(libpath="/usr/lib/libtuxeip.so") sess = tux.OpenSession(PLC_IP_ADDRESS)