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