this is an irc bot, it doesn't use punctuation
This commit is contained in:
parent
939f522f4b
commit
f6b0a5c6f1
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user