Skip to content

Commit

Permalink
clarify help
Browse files Browse the repository at this point in the history
  • Loading branch information
fportantier committed Jul 27, 2018
1 parent 044f5aa commit 18d2988
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1,185 deletions.
4 changes: 2 additions & 2 deletions habu/cli/cmd_xor.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

@click.command()
@click.option('-k', default='0', help='Encryption key')
@click.option('-i', type=click.File('rb'), default='-', help='Input file')
@click.option('-o', type=click.File('wb'), default='-', help='Output file')
@click.option('-i', type=click.File('rb'), default='-', help='Input file (default: stdin)')
@click.option('-o', type=click.File('wb'), default='-', help='Output file (default: stdout)')
def cmd_xor(k, i, o):
"""XOR cipher.
Expand Down
Loading

0 comments on commit 18d2988

Please sign in to comment.