From 95e6a3585504cc939581b044dc220595e2d25dd0 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 29 Oct 2010 17:07:39 +0000 Subject: [PATCH] put splitlines() back where it belongs git-svn-id: svn://localhost/ardour2/branches/3.0@7945 d708f5d6-7413-0410-9779-e7cbd77b26cf --- wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wscript b/wscript index 235fa5aed2..69b531f93b 100644 --- a/wscript +++ b/wscript @@ -41,7 +41,7 @@ i18n_children = [ def fetch_svn_revision (path): cmd = "LANG= svn info " + path + " | awk '/^Revision:/ { print $2}'" - return subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0] + return subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines() def fetch_gcc_version (): cmd = "LANG= gcc --version" @@ -75,7 +75,7 @@ def fetch_bzr_revision (path): def create_stored_revision(): rev = "" if os.path.exists('.svn'): - rev = fetch_svn_revision('.').splitlines() + rev = fetch_svn_revision('.'); elif os.path.exists('.git'): rev = fetch_git_revision('.'); elif os.path.exists('.bzr'):