From 12e6c9ccc3e2cebe3f8f608405d5f7d6ce846504 Mon Sep 17 00:00:00 2001 From: Martin Hermant Date: Mon, 13 Mar 2017 17:24:24 +0100 Subject: [PATCH] fix print with old py2 syntax --- python/lib/moresetuptools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lib/moresetuptools.py b/python/lib/moresetuptools.py index f5eaf39f..5fdf43c0 100644 --- a/python/lib/moresetuptools.py +++ b/python/lib/moresetuptools.py @@ -74,7 +74,7 @@ def get_git_revision_hash( short=True): return None if not which('git'): - print 'no git found on this system : can\'t get sha' + print ('Version : no git found on this system : can\'t get sha') return "" import subprocess -- 2.11.0