From 9e7d0a50ca58031cf560072a19129fef8e3b5093 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sat, 27 Aug 2016 09:49:59 -0700 Subject: [PATCH] Revert "ServiceBot: fall back to a space in 'help' when stripped text is empty" This reverts commit 7a3c8ab637d9b49e5b9dca5a3f4ec8c226b85573. --- utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.py b/utils.py index 4fa1b30..55b23d2 100644 --- a/utils.py +++ b/utils.py @@ -317,7 +317,7 @@ class ServiceBot(): else: for line in lines: # Otherwise, just output the rest of the docstring to IRC. - _reply(line.strip() or ' ') + _reply(line.strip()) else: _reply("Error: Command %r doesn't offer any help." % command) return