From ae209c7b3974ee208579dfc1981a72506ab98b9f Mon Sep 17 00:00:00 2001 From: Patrick McDonagh Date: Thu, 14 Jul 2016 18:55:12 -0500 Subject: [PATCH] Adds error tracking to micro800 write tag --- POCloud_Driver/micro800.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/POCloud_Driver/micro800.py b/POCloud_Driver/micro800.py index ef37930..fe991a0 100644 --- a/POCloud_Driver/micro800.py +++ b/POCloud_Driver/micro800.py @@ -14,7 +14,7 @@ def readMicroTag(addr, tag): except Exception: err = c.get_status() c.close() - print err + print("Error with {}: {}".format(tag, err)) pass c.close()