From 95a3fde173be0dc5a02cdc2f0c4e10aef8c33e5b Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 15 Sep 2017 11:08:21 -0400 Subject: [PATCH] that was driving me crazy --- pipenv/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/utils.py b/pipenv/utils.py index 0ba41eb5..725a7ffd 100644 --- a/pipenv/utils.py +++ b/pipenv/utils.py @@ -28,7 +28,7 @@ def python_version(path_to_python): try: TEMPLATE = 'Python {}.{}.{}' - c = delegator.run([path_to_python,'--version'], block=False) + c = delegator.run([path_to_python, '--version'], block=False) assert c.return_code == 0 except Exception: return None