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]