From d2f1fb89ab90c930ba6ed6cb1232f5428ec7265d Mon Sep 17 00:00:00 2001 From: Vaclav Rehak Date: Mon, 23 Jul 2018 17:37:18 +0200 Subject: [PATCH] Fix passing multiple ignores to pipenv check Fix missing space in command line arguments to 'safety' when multiple CVEs are ignored. --- pipenv/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/core.py b/pipenv/core.py index ca79536c..9a54608c 100644 --- a/pipenv/core.py +++ b/pipenv/core.py @@ -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)))