From a822b4f61ab0f1389e704dd9f1baddaeb91cc981 Mon Sep 17 00:00:00 2001 From: Luke Rogers Date: Thu, 17 May 2012 11:17:38 +1200 Subject: [PATCH] Changed soem strings --- disabled_plugins/suggest.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/disabled_plugins/suggest.py b/disabled_plugins/suggest.py index 75cdaa8..92f9405 100755 --- a/disabled_plugins/suggest.py +++ b/disabled_plugins/suggest.py @@ -15,7 +15,7 @@ def suggest(inp, inp_unstripped=''): num, inp = m.groups() num = int(num) if num > 10: - return 'can only get first ten suggestions' + return 'I can only get the first ten suggestions.' else: num = 0 @@ -23,10 +23,10 @@ def suggest(inp, inp_unstripped=''): page_json = page.split('(', 1)[1][:-1] suggestions = json.loads(page_json)[1] if not suggestions: - return 'no suggestions found' + return 'No suggestions found.' if num: if len(suggestions) + 1 <= num: - return 'only got %d suggestions' % len(suggestions) + return 'I only got %d suggestions.' % len(suggestions) out = suggestions[num - 1] else: out = random.choice(suggestions)