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 committed Dec 9, 2013
1 parent 6dde104 commit acd7976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/lib/cli.py
Expand Up @@ -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):
Expand Down

0 comments on commit acd7976

Please sign in to comment.