From 227338ebf21434bdf98234782229656d2de7b8fe Mon Sep 17 00:00:00 2001 From: ge Date: Sun, 6 Feb 2022 17:03:01 +0300 Subject: [PATCH] feat: Update help text --- pwc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pwc.py b/pwc.py index 45200cf..814fdc9 100755 --- a/pwc.py +++ b/pwc.py @@ -35,10 +35,10 @@ def generate_pass(special_chars: bool, lenght: int, print_pass: bool) -> str: process.stdin.write(pw.encode()) # Put password to STDIN. def usage(): - print('Usage: pwc [-h | --help] [-s | --special] [-p | --print] []') + print('Usage: pwc [-h|--help] [-s|--special] [-p|--print] []') def print_help(): - print('Generate password and copy it to clipboard.') + print('Generate password and copy it to clipboard (xclip).') print() usage() print()