python-click/examples/complex/complex/commands/cmd_status.py
2014-10-16 14:40:34 -04:00

11 lines
277 B
Python

import click
from complex.cli import pass_context
@click.command('status', short_help='Shows file changes.')
@pass_context
def cli(ctx):
"""Shows file changes in the current working directory."""
ctx.log('Changed files: none')
ctx.vlog('bla bla bla, debug info')