From f3641b376a9234df5d5bd82a1052ba1eb380e820 Mon Sep 17 00:00:00 2001 From: Matthew Webster <mwebster@fmrib.ox.ac.uk> Date: Tue, 25 Oct 2016 14:20:24 +0000 Subject: [PATCH] Py 2/3 --- fsladd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fsladd b/fsladd index 053bd5d..b227224 100755 --- a/fsladd +++ b/fsladd @@ -7,7 +7,7 @@ import sys import os import subprocess import argparse - +from __future__ import print_function def main(output,files,scale,mean): if scale: newMean=1000 @@ -21,7 +21,7 @@ def main(output,files,scale,mean): if mean: command+=["-div",str(len(files))] command.append(output) - print command + print(command) status=subprocess.call(command) -- GitLab