'wormhole help' should print the same thing as 'wormhole --help'

refs #61
This commit is contained in:
Brian Warner 2017-07-10 10:15:03 -04:00
parent d2c91c7154
commit b34165d4fb

View File

@ -168,6 +168,11 @@ TorArgs = _compose(
),
)
@wormhole.command()
@click.pass_context
def help(context, **kwargs):
print(context.find_root().get_help())
# wormhole send (or "wormhole tx")
@wormhole.command()
@CommonArgs