This commit is contained in:
Jeremy Fincher 2004-05-01 00:15:11 +00:00
parent d82c694a05
commit 2ebabe1a73

View File

@ -295,7 +295,7 @@ class Filter(callbacks.Privmsg):
def unmorse(self, irc, msg, args): def unmorse(self, irc, msg, args):
"""<morse code text> """<morse code text>
Does the reverse of the morse/ditdaw command. Does the reverse of the morse command.
""" """
text = privmsgs.getArgs(args) text = privmsgs.getArgs(args)
text = text.replace('_', '-') text = text.replace('_', '-')
@ -311,7 +311,7 @@ class Filter(callbacks.Privmsg):
def morse(self, irc, msg, args): def morse(self, irc, msg, args):
"""<text> """<text>
Gives the more code equivalent of a given string. Gives the morse code equivalent of a given string.
""" """
text = privmsgs.getArgs(args) text = privmsgs.getArgs(args)
L = [] L = []