From f6b0a5c6f1cef333d8f49c5c2817b5f9a831e6fa Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Sun, 25 Jul 2010 10:44:10 -0500 Subject: [PATCH] this is an irc bot, it doesn't use punctuation --- dr.botzo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dr.botzo.py b/dr.botzo.py index 8744d42..c529890 100755 --- a/dr.botzo.py +++ b/dr.botzo.py @@ -19,7 +19,7 @@ def sub_join_channel(connection, event, nick, userhost, replypath, what, admin_u channel = whats[1] if irclib.is_channel(channel): connection.join(channel) - connection.privmsg(replypath, 'joined ' + channel + '.') + connection.privmsg(replypath, 'joined ' + channel) ##### # sub_part_channel @@ -32,7 +32,7 @@ def sub_part_channel(connection, event, nick, userhost, replypath, what, admin_u channel = whats[1] if irclib.is_channel(channel): connection.part(channel, ' '.join(whats[2:])) - connection.privmsg(replypath, 'parted ' + channel + '.') + connection.privmsg(replypath, 'parted ' + channel) ##### # sub_quit_channel