diff --git a/DATA/tools/parse b/DATA/tools/parse index dd2169b52..e5b1d2d87 100755 --- a/DATA/tools/parse +++ b/DATA/tools/parse @@ -152,7 +152,7 @@ for line in f: command += ' > ' + filename print('Running DPL command', command) starttime = time.time() - retVal = subprocess.run(command, shell=True, stderr=subprocess.PIPE, stdout=subprocess.PIPE) + retVal = subprocess.run(command, shell=True, stderr=subprocess.PIPE, stdout=subprocess.PIPE, input="") print('Execution time: ', time.time() - starttime) tmpchk = retVal.stderr.decode() + retVal.stdout.decode() haserror = 0