Skip to content

Commit

Permalink
Merge pull request #2434 from ltalirz/issue_2355_verdi_help_exit_status
Browse files Browse the repository at this point in the history
let verdi help return exit status 0
  • Loading branch information
yakutovicha authored Jan 31, 2019
2 parents d4ddb6b + 2d3a80a commit d8f8ff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiida/cmdline/verdilib.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def run(self, *args):
print ""
print ("Use '{} help <command>' for more information "
"on a specific command.".format(execname))
sys.exit(1)
sys.exit(0)

if command in short_doc:
print "Description for '%s %s'" % (execname, command)
Expand Down

0 comments on commit d8f8ff1

Please sign in to comment.