From c4be677a6209a1530942538ee21f462d1553bd19 Mon Sep 17 00:00:00 2001 From: Labrys of Knossos Date: Tue, 15 Jan 2019 17:22:26 -0500 Subject: [PATCH] Fix git subprocess --- core/version_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/version_check.py b/core/version_check.py index 8fac2d37..53945e1f 100644 --- a/core/version_check.py +++ b/core/version_check.py @@ -116,7 +116,7 @@ class GitUpdateManager(UpdateManager): test_cmd = 'version' if core.GIT_PATH: - main_git = '\'{git}\''.format(git=core.GIT_PATH) + main_git = '"{git}"'.format(git=core.GIT_PATH) else: main_git = 'git'