From 5a16242e5c0ae930ac88eeb26fac5597208cacd0 Mon Sep 17 00:00:00 2001 From: Peter Dave Hello Date: Sat, 19 Dec 2020 23:18:06 +0800 Subject: [PATCH] Fix a missing space in help message of bare option --- safety/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/safety/cli.py b/safety/cli.py index 3156d4d6..147a08fd 100644 --- a/safety/cli.py +++ b/safety/cli.py @@ -102,7 +102,7 @@ def check(key, db, json, full_report, bare, stdin, files, cache, ignore, output, help='Full reports include a security advisory (if available). Default: ' '--short-report') @click.option("--bare/--not-bare", default=False, - help='Output vulnerable packages only. Useful in combination with other tools.' + help='Output vulnerable packages only. Useful in combination with other tools. ' 'Default: --not-bare') @click.option("file", "--file", "-f", type=click.File(), required=True, help="Read input from an insecure report file. Default: empty")