From 054c2573542bb94634528f6f861ff29a84394d49 Mon Sep 17 00:00:00 2001 From: Juhani Haverinen Date: Thu, 3 Apr 2014 21:45:35 +0300 Subject: [PATCH] Prevent #help from triggering copycats --- botcmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/botcmd.py b/botcmd.py index 8df5169..ee301d2 100644 --- a/botcmd.py +++ b/botcmd.py @@ -175,7 +175,7 @@ def parse((line,irc)): elif line[3]==':#help': helptext=help(' '.join(line[4:])) if helptext: - irc.send('PRIVMSG %s :%s'%(chan,helptext)) + irc.send('PRIVMSG %s : %s'%(chan,helptext)) elif line[3]==':#esoteric' and chan=='#esoteric': irc.send('PRIVMSG %s :Nothing here'%chan) elif line[3][1:] in ('oonbotti:', 'oonbotti', 'oonbotti,', 'oonbotti2', 'oonbotti2:', 'oonbotti2,'):