mirror of
https://github.com/oddluck/limnoria-plugins.git
synced 2025-04-26 04:51:09 -05:00
update help strings
This commit is contained in:
parent
156e0c7649
commit
80d354b1a7
@ -272,12 +272,12 @@ class Fun(callbacks.Plugin):
|
|||||||
chuck = wrap(chuck)
|
chuck = wrap(chuck)
|
||||||
|
|
||||||
def rot(self, irc, msg, args, text):
|
def rot(self, irc, msg, args, text):
|
||||||
"Encode text with ROT13"
|
"<text> Encode text with ROT13"
|
||||||
irc.reply(codecs.encode(text, "rot_13"))
|
irc.reply(codecs.encode(text, "rot_13"))
|
||||||
rot = wrap(rot, ['text'])
|
rot = wrap(rot, ['text'])
|
||||||
|
|
||||||
def unrot(self, irc, msg, args, text):
|
def unrot(self, irc, msg, args, text):
|
||||||
"Decode ROT13 text"
|
"<text> Decode ROT13 text"
|
||||||
irc.reply(codecs.decode(text, "rot_13"))
|
irc.reply(codecs.decode(text, "rot_13"))
|
||||||
unrot = wrap(unrot, ['text'])
|
unrot = wrap(unrot, ['text'])
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user