this is an irc bot, it doesn't use punctuation

This commit is contained in:
Brian S. Stephan 2010-07-25 10:44:10 -05:00
parent 939f522f4b
commit f6b0a5c6f1
1 changed files with 2 additions and 2 deletions

View File

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