From c6e36f4f1e63afe07532bc074e5c350a0b6ac33c Mon Sep 17 00:00:00 2001 From: Giovanni Bussi <giovanni.bussi@gmail.com> Date: Tue, 19 Sep 2017 07:10:55 +0200 Subject: [PATCH] Fixed non ASCII character It was giving troubles on my mac with py2.7 --- python/buildPythonInterface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/buildPythonInterface.py b/python/buildPythonInterface.py index 8086f778c..3dbfd79cb 100644 --- a/python/buildPythonInterface.py +++ b/python/buildPythonInterface.py @@ -42,7 +42,7 @@ for path in os.environ["PATH"].split(os.pathsep): plumedexe=exe_file break -#Â Get information on where plumed headers and libraries are installed and the version number +# Get information on where plumed headers and libraries are installed and the version number print( "Plumedexe is " + plumedexe ) plumedroot = subprocess.check_output([plumedexe, 'info', '--root']).decode("utf-8").strip("\n") print( "Creating interface for plumed version in " + plumedroot ) -- GitLab