diff --git a/docs/source/algorithms/SaveDspacemap-v1.rst b/docs/source/algorithms/SaveDspacemap-v1.rst
index aa08abb6d70b69a5210c5ce8a4425773274bae42..2ff397771fb27149fcbbcb3942d1d05300a72337 100644
--- a/docs/source/algorithms/SaveDspacemap-v1.rst
+++ b/docs/source/algorithms/SaveDspacemap-v1.rst
@@ -30,7 +30,7 @@ Usage
   LoadCalFile(InputWorkspace=ws,CalFilename=r'PG3_golden.cal',MakeGroupingWorkspace='0',MakeMaskWorkspace='0',WorkspaceName='PG3_gold')
   SaveDspacemap(InputWorkspace="PG3_gold_offsets", DspacemapFile=savefilename)
 
-  print("File created = {} , file size =  {}".format(os.path.exists(savefilename),  os.path.getsize(savefilename)))
+  print("File created =  {} , file size =  {}".format(os.path.exists(savefilename),  os.path.getsize(savefilename)))
 
 .. testcleanup:: ExSavePG3Dmap
 
diff --git a/docs/source/algorithms/SaveGSASInstrumentFile-v1.rst b/docs/source/algorithms/SaveGSASInstrumentFile-v1.rst
index c3e1d913e6c8b5f9b234431a48b1afce0aab5b7f..f2690b6d6e39a72d8ca68dc90c61e86bf4a0910a 100644
--- a/docs/source/algorithms/SaveGSASInstrumentFile-v1.rst
+++ b/docs/source/algorithms/SaveGSASInstrumentFile-v1.rst
@@ -86,7 +86,7 @@ Usage
   gfile.close()
 
   # Print out some result
-  print("Number of lines in GSAS instrument file:  {}".format(len(lines))
+  print("Number of lines in GSAS instrument file:  {}".format(len(lines)))
   print("Line 0:  {}".format(lines[0].strip()))
   print("Line 1:  {}".format(lines[1].strip()))
   print("Line 2:  {}".format(lines[2].strip()))
diff --git a/docs/source/algorithms/SaveILLCosmosAscii-v1.rst b/docs/source/algorithms/SaveILLCosmosAscii-v1.rst
index 7f7bd9edd3c993393ff209f0b301cfe8c95da639..41d27f23b358a6e912d28cdbe8e2b5d1e31d9d80 100644
--- a/docs/source/algorithms/SaveILLCosmosAscii-v1.rst
+++ b/docs/source/algorithms/SaveILLCosmosAscii-v1.rst
@@ -40,7 +40,7 @@ Usage
     # perform the algorithm
     SaveILLCosmosAscii(InputWorkspace=ws1,Filename=savefile)
 
-    print("File Exists: {}".format(os.path.exists(savefile))
+    print("File Exists: {}".format(os.path.exists(savefile)))
 
 .. testcleanup:: ExILLCosmosSimple