From 0998c2a43f320e9001ef40a2b56ebae175002e0a Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sun, 14 Nov 2010 14:36:02 +0100 Subject: [PATCH] Fix bug in src/commands.py (forgotten comma) --- src/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands.py b/src/commands.py index 8f3961bbf..bc54ce884 100644 --- a/src/commands.py +++ b/src/commands.py @@ -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,