From 22e26bb9cf01a1190dc6f445548fc25ee4f54462 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 18 Sep 2017 14:05:57 -0400 Subject: [PATCH] just return the first result normally Signed-off-by: Kenneth Reitz --- pipenv/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index b84eaf35..d8434cb6 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -1194,7 +1194,7 @@ def system_which(command, mult=False): if mult: return result.split('\n') else: - result + result.split('\n')[0] def format_help(help): """Formats the help string."""