[fix][arch] substatus handler not handling outputs in the right order

This commit is contained in:
Vinicius Moreira
2020-06-06 19:02:32 -03:00
parent 2d18e2d803
commit a8ec5c1625

View File

@@ -107,7 +107,7 @@ class TransactionStatusHandler(Thread):
return True
def handle(self, output: str):
self.outputs.append(output)
self.outputs.insert(0, output)
def stop_working(self):
self.work = False