Fixed wrong escaping of '

This commit is contained in:
mrhanky
2017-08-21 18:24:39 +02:00
parent ee46c007c5
commit 65715536f2

View File

@ -347,7 +347,7 @@ class Useless(DatabasePlugin):
nick = args.get('<nick>', 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):