From b2f13c83b502f47500c7590b088ebccac43687ed Mon Sep 17 00:00:00 2001 From: Mathias Klette Date: Fri, 16 Sep 2011 19:42:24 +0200 Subject: [PATCH] fix: wrong syntax --- lib/git_helper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/git_helper.py b/lib/git_helper.py index 9312a4c..421d10b 100644 --- a/lib/git_helper.py +++ b/lib/git_helper.py @@ -250,9 +250,9 @@ def git_get_treeish(refname): """ cmd = [ GIT, - 'show --oneline', + 'show', '--oneline', '%s' % refname, - '|awk \'{print $1\}\'' + '|awk \'{print $1}\'' ] cmdobj = subprocess.Popen( cmd, -- 2.39.5