mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Fix passing multiple ignores to pipenv check
Fix missing space in command line arguments to 'safety' when multiple CVEs are ignored.
This commit is contained in:
+1
-1
@@ -2326,7 +2326,7 @@ def do_check(
|
||||
else:
|
||||
python = system_which("python")
|
||||
if ignore:
|
||||
ignored = "--ignore {0}".format("--ignore ".join(ignore))
|
||||
ignored = "--ignore {0}".format(" --ignore ".join(ignore))
|
||||
click.echo(
|
||||
crayons.normal(
|
||||
"Notice: Ignoring CVE(s) {0}".format(crayons.yellow(", ".join(ignore)))
|
||||
|
||||
Reference in New Issue
Block a user