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 4a84ea2 commit b1b4124
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/lib/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,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 b1b4124

Please sign in to comment.