From 3007099c44d5cf8420ea1ffadca4695fec7e0a8f Mon Sep 17 00:00:00 2001 From: Aaron Griffith Date: Fri, 2 Mar 2012 19:09:40 -0500 Subject: [PATCH] fixed --version on debian --- 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 826dcd9..a11cb26 100644 --- a/overviewer_core/util.py +++ b/overviewer_core/util.py @@ -62,7 +62,7 @@ def findGitHash(): def findGitVersion(): try: - p = Popen(['git', 'describe', '--tags'], stdout=PIPE, stderr=PIPE, shell=True) + p = Popen('git describe --tags', stdout=PIPE, stderr=PIPE, shell=True) p.stderr.close() line = p.stdout.readlines()[0] if line.startswith('release-'):