3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-12-17 23:52:49 +01:00

Revert "ServiceBot: fall back to a space in 'help' when stripped text is empty"

This reverts commit 7a3c8ab637.
This commit is contained in:
James Lu 2016-08-27 09:49:59 -07:00
parent 556b388a4e
commit 9e7d0a50ca

View File

@ -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