Commit 2f760fa5 authored by Julien Muchembled's avatar Julien Muchembled

fixup! neoctl: fix exit status code if not ready

See commit b6f821a2.
parent 798c9f25
......@@ -353,7 +353,7 @@ class Application(object):
try:
return action(args[level:])
except NotReadyException, message:
sys.exit('ERROR: ' + message)
sys.exit('ERROR: %s' % message)
def _usage(self, action_dict, level=0):
result = []
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment