This commit is contained in:
Luke Rogers 2013-07-08 22:22:06 +12:00
parent 90df679324
commit bc6d604897

7
plugins/length.py Normal file
View file

@ -0,0 +1,7 @@
from util import hook
@hook.command
def length(inp):
"length <message> -- gets the length of <message>"
return "The length of that message is {} characters.".format(len(inp))