summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoic Guegan <loic.guegan@mailbox.org>2024-04-09 14:18:05 +0200
committerLoic Guegan <loic.guegan@mailbox.org>2024-04-09 14:18:05 +0200
commit963e0e8381bc141822a682da6a69c45691271a47 (patch)
tree06c57bac2fdee20ac2dd3723d8d08daac89ae96e
parent57b6888bcabfdf9eeebfc8323491450ce03955af (diff)
Debug power reportingHEADmain
-rw-r--r--.clusterman.py8
1 files changed, 7 insertions, 1 deletions
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]