mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
Fix bug in src/commands.py (forgotten comma)
This commit is contained in:
parent
11f7033ee0
commit
0998c2a43f
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user