summaryrefslogtreecommitdiff
path: root/.clusterman.py
diff options
context:
space:
mode:
Diffstat (limited to '.clusterman.py')
-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]