Fixed derpy string in plugins/suggest.py

This commit is contained in:
Luke Rogers 2011-11-21 13:33:01 +13:00
parent 6161164c5f
commit 9e8700195b
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ def suggest(inp, inp_unstripped=''):
num, inp = m.groups()
num = int(num)
if num > 10:
return 'I can only get first ten suggestions.'
return 'I can only get the first ten suggestions.'
else:
num = 0