From 7960c1c84a93663858901040bb1a3ecb6aed5a20 Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Sat, 5 Dec 2020 19:24:03 +1100 Subject: [PATCH] add an AppendMessage() as well --- status.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/status.py b/status.py index 8a9f6f3..b0c30f4 100644 --- a/status.py +++ b/status.py @@ -17,6 +17,10 @@ class Status: self.message=msg return + def AppendMessage(self, msg): + self.message=self.message+msg + return + def ClearMessage(self): self.alert="success" self.message=""