Update utility.py

This commit is contained in:
Luke Rogers 2013-10-07 01:12:12 +13:00
parent ce0063f4aa
commit b05056ff28

View file

@ -114,7 +114,7 @@ def length(inp):
@hook.command @hook.command
def reverse(inp): def reverse(inp):
"""Enter a string and the bot will reverse it and print it out.""" """Enter a string and the bot will reverse it and print it out."""
return "You say %s, I say %s" % (inp, inp[::-1]) return inp[::-1]
# hashing # hashing