From 0436260abeeda29b17a6cf790c6e9bafaf242eb5 Mon Sep 17 00:00:00 2001 From: Markus Birth Date: Wed, 29 Aug 2018 21:12:30 +0200 Subject: [PATCH] Small fix in output --- tclcheck_allfull.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tclcheck_allfull.py b/tclcheck_allfull.py index 41ff399..c594fac 100755 --- a/tclcheck_allfull.py +++ b/tclcheck_allfull.py @@ -48,8 +48,8 @@ for prd, variant in prds.items(): if result.tvver != lastver: txt_tv = "{} (old: {} / OTA: {})".format( ansi.CYAN + txt_tv + ansi.RESET, - ansi.CYAN_DARK + variant["last_full"] + ansi.RESET, - variant["last_ota"] + ansi.CYAN_DARK + str(variant["last_full"]) + ansi.RESET, + str(variant["last_ota"]) ) else: result.delete_dump()