diff options
author | Jon Bernard <jbernard@tuxion.com> | 2016-07-18 15:34:48 -0400 |
---|---|---|
committer | Jon Bernard <jbernard@tuxion.com> | 2016-07-18 15:34:48 -0400 |
commit | e09398c6ef5af049a28b88690911343ba5238e67 (patch) | |
tree | 19c18c81fab78f926827ef6cae2132f82a2f3975 | |
parent | 556d4651252de3ba3884d2a0f3f3522f92e304d9 (diff) | |
download | dotfiles-e09398c6ef5af049a28b88690911343ba5238e67.tar.gz dotfiles-e09398c6ef5af049a28b88690911343ba5238e67.tar.bz2 dotfiles-e09398c6ef5af049a28b88690911343ba5238e67.zip |
Improve help string for status command
-rw-r--r-- | dotfiles/cli.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dotfiles/cli.py b/dotfiles/cli.py index 15f5992..5a0dbf4 100644 --- a/dotfiles/cli.py +++ b/dotfiles/cli.py @@ -196,7 +196,12 @@ def unlink(repos, debug, files): @click.option('-c', '--color', is_flag=True, help='Enable color output.') @pass_repos def status(repos, all, color): - """Show all dotfiles in a non-OK state.""" + """Show all dotfiles in a non-OK state. + + Legend: + + ?: missing !: conflict E: error""" + state_info = { 'error': {'char': 'E', 'color': None}, 'missing': {'char': '?', 'color': None}, |