From 3ef5382be8d76361062e3561a8249d0c75965378 Mon Sep 17 00:00:00 2001 From: Aaron Griffith Date: Sun, 18 Aug 2013 17:36:10 -0400 Subject: [PATCH] fixed new version incantation to work on windows --- overviewer_core/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overviewer_core/util.py b/overviewer_core/util.py index 32b711c..d936cba 100644 --- a/overviewer_core/util.py +++ b/overviewer_core/util.py @@ -52,7 +52,7 @@ def findGitHash(): def findGitVersion(): try: - p = Popen("git describe --tags --match 'v*.*.*'", stdout=PIPE, stderr=PIPE, shell=True) + p = Popen('git describe --tags --match "v*.*.*"', stdout=PIPE, stderr=PIPE, shell=True) p.stderr.close() line = p.stdout.readlines()[0] if line.startswith('release-'):