From a9e4420f7d9f2981a9bd9c19e76685ca8c863840 Mon Sep 17 00:00:00 2001 From: Brandon Hewer <brandon.hewer@stfc.ac.uk> Date: Thu, 5 Oct 2017 16:28:33 +0100 Subject: [PATCH] Update SaveIsawUB docs Refs #20825 --- docs/source/algorithms/SaveIsawUB-v1.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/algorithms/SaveIsawUB-v1.rst b/docs/source/algorithms/SaveIsawUB-v1.rst index 8e9e2b4f959..00a0b73a5f3 100644 --- a/docs/source/algorithms/SaveIsawUB-v1.rst +++ b/docs/source/algorithms/SaveIsawUB-v1.rst @@ -37,13 +37,13 @@ Usage f=open(filename,"r") x,y,z=map(float,f.readline().split()) if (x==0) and (y==0.5) and (z==0): - print "The first line is 0 0.5 0" + print("The first line is 0 0.5 0") x,y,z=map(float,f.readline().split()) if (x==0) and (y==0) and (z==0.25): - print "The second line is 0 0 0.25" + print("The second line is 0 0 0.25") x,y,z=map(float,f.readline().split()) if (x==0.2) and (y==0) and (z==0): - print "The third line is 0.2 0 0" + print("The third line is 0.2 0 0") f.close() -- GitLab