From a8ec5c16250d3a914b650121a4442a3954cf6ff7 Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Sat, 6 Jun 2020 19:02:32 -0300 Subject: [PATCH] [fix][arch] substatus handler not handling outputs in the right order --- bauh/gems/arch/output.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bauh/gems/arch/output.py b/bauh/gems/arch/output.py index 7188190a..ecaa7057 100644 --- a/bauh/gems/arch/output.py +++ b/bauh/gems/arch/output.py @@ -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