Skip to content

Commit

Permalink
Merge pull request #58 from frennkie/fix-interactive-help
Browse files Browse the repository at this point in the history
lndmanage: give more help in interactive mode
  • Loading branch information
bitromortac committed Feb 3, 2020
2 parents 7d7caee + 9276128 commit acbd45d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lndmanage/lndmanage.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ def main():
logger.info("exit")
return 0

if user_input == 'help':
if not user_input or user_input in ['help', '-h', '--help']:
parser.parser.print_help()
continue
elif user_input == 'exit':
Expand Down

0 comments on commit acbd45d

Please sign in to comment.