From 4df0b281d68ab7b6e5d56d463dfcd64f1aa30ff3 Mon Sep 17 00:00:00 2001 From: iou1name Date: Sat, 2 Jun 2018 13:42:19 -0400 Subject: [PATCH] fix error message on .isup --- modules/isup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/isup.py b/modules/isup.py index 73b110a..f3d17d8 100755 --- a/modules/isup.py +++ b/modules/isup.py @@ -34,8 +34,8 @@ def isup(bot, trigger): except Exception as e: print(e) - return bot.msg("Listen buddy. I don't know what you're doing, but \ - you're not doing it right.") + return bot.msg("Listen buddy. I don't know what you're doing, but " + \ + "you're not doing it right.") try: res.raise_for_status()