From 877de9b5c37bc9e7d039f3da70625ed18f2471cf Mon Sep 17 00:00:00 2001 From: Thorsten Date: Fri, 8 Jul 2016 21:19:07 +0200 Subject: [PATCH] fix punctuation --- plugins/commands.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/commands.py b/plugins/commands.py index 39176d7..18a6749 100644 --- a/plugins/commands.py +++ b/plugins/commands.py @@ -283,15 +283,15 @@ def command_dice(argv, **args): def command_choose(argv, **args): alternatives = argv binary = ( - ('Yes', 'Yeah!', 'Ok!', 'Ay!', 'Great!'), - ('No', 'Naah', 'Meh', 'Nay', 'You stupid?'), - ('Maybe', 'Dunno', 'I don\'t care') + ('Yes.', 'Yeah!', 'Ok!', 'Ay!', 'Great!'), + ('No.', 'Naah..', 'Meh.', 'Nay.', 'You stupid?'), + ('Maybe.', 'Dunno.', 'I don\'t care.') ) # single or no choice if len(alternatives) < 2: return { - 'msg': '{}: {}.'.format(args['reply_user'], random.choice(random.choice(binary))) + 'msg': '{}: {}'.format(args['reply_user'], random.choice(random.choice(binary))) } elif 'choose' not in alternatives: choice = random.choice(alternatives)