3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 01:09:22 +01:00

ts6_common: fix a typo

This commit is contained in:
James Lu 2015-09-06 22:09:09 -07:00
parent ed0e1e1779
commit 7952590436

View File

@ -121,7 +121,7 @@ class TS6BaseProtocol(Protocol):
self._send(numeric, 'NOTICE %s :%s' % (target, text))
def topicClient(self, numeric, target, text):
"""Sends a ROPIC from a PyLink client."""
"""Sends a TOPIC change from a PyLink client."""
if not utils.isInternalClient(self.irc, numeric):
raise LookupError('No such PyLink PseudoClient exists.')
self._send(numeric, 'TOPIC %s :%s' % (target, text))