From acd7976f67f769483d615d0a77422e59007a086d Mon Sep 17 00:00:00 2001 From: Samuele Santi Date: Mon, 9 Dec 2013 13:16:32 +0100 Subject: [PATCH] Removed limit of number of arguments passed to ``user add`` command. This is needed as the ``user add`` command is supposed to accept a variable number of arguments. --- ckan/lib/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ckan/lib/cli.py b/ckan/lib/cli.py index 3378bce73e9..389570b4921 100644 --- a/ckan/lib/cli.py +++ b/ckan/lib/cli.py @@ -697,7 +697,7 @@ class UserCmd(CkanCommand): ''' summary = __doc__.split('\n')[0] usage = __doc__ - max_args = 4 + max_args = None min_args = 0 def command(self):