From 963e0e8381bc141822a682da6a69c45691271a47 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Tue, 9 Apr 2024 14:18:05 +0200 Subject: [PATCH] Debug power reporting --- .clusterman.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.clusterman.py b/.clusterman.py index cb2d5a7..506beb7 100644 --- a/.clusterman.py +++ b/.clusterman.py @@ -58,7 +58,13 @@ while True: elif linum > 1: if unique: split=line.split(",") - if lastPower != "" and split[2] != lastPower: + if lastPower != "": + if split[2] != lastPower: + print(line) + finalLinePrinted=True + else: + finalLinePrinted=False + else: print(line) finalLine=line lastPower=split[2]