# HG changeset patch # User george-weingart # Date 1624331797 0 # Node ID 50a5e03dda85f4ac8a255e1e218db97925a69c8c # Parent 1a2f01b31cf33ca6f582a12f2c37b0ad67741bcd Micropita Prepare - fixed inconsistencies between spaces and tabs diff -r 1a2f01b31cf3 -r 50a5e03dda85 micropita_prepare.py --- a/micropita_prepare.py Thu Aug 11 12:45:27 2016 -0400 +++ b/micropita_prepare.py Tue Jun 22 03:16:37 2021 +0000 @@ -87,7 +87,7 @@ ################################################################################## parser = read_params( sys.argv ) results = parser.parse_args() -#root_dir = os.environ.get('micropita_SCRIPT_PATH') #Using this +#######root_dir = os.environ.get('micropita_SCRIPT_PATH') root_dir = os.path.dirname(os.path.realpath(__file__)) #Find the current directory where the program resides GW 20160810 fname = results.inputname @@ -153,7 +153,7 @@ try: subprocess.check_call(argsx , shell=False) except: - print "The call to micropita failed=============" + print ("The call to micropita failed=============") sys.exit(0) @@ -175,7 +175,7 @@ ###os.system(os_command) subprocess.check_call(argsx , shell=False) except: - print "The call to micropita failed=============" + print ("The call to micropita failed=============") sys.exit(0) @@ -198,5 +198,5 @@ try: subprocess.check_call(argsx , shell=False) except: - print "The call to micropita failed=============" + print ("The call to micropita failed=============") sys.exit(0)