From 65715536f2d200e30fa936b0b6b9411371ec6ad7 Mon Sep 17 00:00:00 2001 From: mrhanky Date: Mon, 21 Aug 2017 18:24:39 +0200 Subject: [PATCH] Fixed wrong escaping of ' --- bot/plugins/useless.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/plugins/useless.py b/bot/plugins/useless.py index 51d2284..18d5cce 100644 --- a/bot/plugins/useless.py +++ b/bot/plugins/useless.py @@ -347,7 +347,7 @@ class Useless(DatabasePlugin): nick = args.get('', mask.nick) gender = random.choice(GENDERS) - return 'Assuming {}''s gender... they''re a {}.'.format(nick, gender) + return 'Assuming {}\'s gender... they\'re a {}.'.format(nick, gender) # noinspection PyMethodMayBeStatic def _rainbow(self, i, char):