Merge branch 'testing'

This commit is contained in:
Valentin Lorentz 2010-11-14 14:36:21 +01:00
commit 3589f15278
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ def getFloat(irc, msg, args, state, type=_('floating point number')):
def getPositiveInt(irc, msg, args, state, *L):
getInt(irc, msg, args, state,
p=lambda i: i>0, type=_('positive integer') *L)
p=lambda i: i>0, type=_('positive integer'), *L)
def getNonNegativeInt(irc, msg, args, state, *L):
getInt(irc, msg, args, state,