Skip to content

Commit

Permalink
Removed limit of number of arguments passed to user add command.
Browse files Browse the repository at this point in the history
This is needed as the ``user add`` command is supposed to accept a variable number
of arguments.
  • Loading branch information
rshk authored and amercader committed Jan 8, 2014
1 parent 8823a6b commit d952c4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/lib/cli.py
Expand Up @@ -644,7 +644,7 @@ class UserCmd(CkanCommand):
'''
summary = __doc__.split('\n')[0]
usage = __doc__
max_args = 4
max_args = None
min_args = 0

def command(self):
Expand Down

0 comments on commit d952c4f

Please sign in to comment.