summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files 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'):