diff --git a/docs/source/algorithms/SavePHX-v1.rst b/docs/source/algorithms/SavePHX-v1.rst index abf97197231823f782587e0c9e7222411a56581c..49ff0e73bb50dc739b1bebdef2662441fcd1b8df 100644 --- a/docs/source/algorithms/SavePHX-v1.rst +++ b/docs/source/algorithms/SavePHX-v1.rst @@ -56,13 +56,13 @@ Usage # import os funcions to work with folders import os # create sample workspace - ws=CreateSampleWorkspace(); + ws=CreateSampleWorkspace() # test file name file_name = os.path.join(config["defaultsave.directory"], "TestSavePhx.phx") # save the file SavePHX(ws,Filename=file_name); - print "target file exists? {0}".format(os.path.exists(file_name)); + print("target file exists? {0}".format(os.path.exists(file_name))) .. testcleanup:: exSavePHX