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:
Vaclav Rehak
2018-07-23 17:37:18 +02:00
parent 134927c28d
commit d2f1fb89ab
+1 -1
View File
@@ -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)))