Added part()

This commit is contained in:
lukeroge 2012-03-28 10:21:07 +13:00
parent d65f155740
commit c64c2cbcd0

View file

@ -184,6 +184,9 @@ class IRC(object):
def join(self, channel):
self.cmd("JOIN", [channel])
def part(self, channel):
self.cmd("PART", [channel])
def msg(self, target, text):
self.cmd("PRIVMSG", [target, text])