The grammar nazi says fewer is the correct word.

This commit is contained in:
James Vega 2005-03-08 13:18:10 +00:00
parent 1ea9fe1b4c
commit 0b11cb9f12

View File

@ -62,7 +62,7 @@ class Games(callbacks.Plugin):
elif sides > 100:
irc.error('Dice can\'t have more than 100 sides.')
elif sides < 3:
irc.error('Dice can\'t have less than 3 sides.')
irc.error('Dice can\'t have fewer than 3 sides.')
else:
L = [0] * dice
for i in xrange(dice):