13
0

revert 14046 which attempted to "fix" something with python3 but broke various common uses

git-svn-id: svn://localhost/ardour2/branches/3.0@14068 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2013-02-20 20:13:35 +00:00
parent 4be1c7d8c8
commit ff0662ef85

View File

@ -60,7 +60,7 @@ else:
def fetch_svn_revision (path):
cmd = "svnversion | cut -d: -f1"
output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].decode(sys.stdout.encoding)
output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0];
return output.rstrip(os.linesep)
def fetch_gcc_version (CC):