From 26800752b47afa28ee52da22d7c9d3571435c860 Mon Sep 17 00:00:00 2001 From: Christophe Biocca Date: Tue, 23 Sep 2014 16:17:50 -0400 Subject: [PATCH] Puts parens in print call, for python3 compatibility. --- bin/_blackbox_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/_blackbox_common.sh b/bin/_blackbox_common.sh index af77c88..32765c1 100755 --- a/bin/_blackbox_common.sh +++ b/bin/_blackbox_common.sh @@ -299,7 +299,7 @@ function vcs_commit_git() { function vcs_relative_path() { # Usage: vcs_relative_path file local name="$1" - python -c 'import os ; print os.path.relpath("'$(pwd -P)'/'"$name"'", "'"$REPOBASE"'")' + python -c 'import os ; print(os.path.relpath("'$(pwd -P)'/'"$name"'", "'"$REPOBASE"'"))' }