diff --git a/statusbot/bot.py b/statusbot/bot.py index 4d8bd31..2dd942c 100644 --- a/statusbot/bot.py +++ b/statusbot/bot.py @@ -191,7 +191,10 @@ class Tweet(UpdateInterface): pass def ok(self, msg=None): - self.update("Everything back to normal") + if msg: + self.update(msg) + else: + self.update("Everything back to normal") class StatusPage(WikiPage, UpdateInterface):