From b05056ff2885b9138654dc69dd54e86d8619ebf6 Mon Sep 17 00:00:00 2001 From: Luke Rogers Date: Mon, 7 Oct 2013 01:12:12 +1300 Subject: [PATCH] Update utility.py --- plugins/utility.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/utility.py b/plugins/utility.py index ae0e4d1..342cd44 100644 --- a/plugins/utility.py +++ b/plugins/utility.py @@ -114,7 +114,7 @@ def length(inp): @hook.command def reverse(inp): """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