From 795259043606bb5e2ba742281cb161884a87a62c Mon Sep 17 00:00:00 2001 From: James Lu Date: Sun, 6 Sep 2015 22:09:09 -0700 Subject: [PATCH] ts6_common: fix a typo --- protocols/ts6_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/ts6_common.py b/protocols/ts6_common.py index 211840f..2d1efe2 100644 --- a/protocols/ts6_common.py +++ b/protocols/ts6_common.py @@ -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))