From 431b54da6d18b014556427225043ef451fc4e0ac Mon Sep 17 00:00:00 2001 From: Lee de Mora Date: Mon, 27 Nov 2023 15:26:54 +0000 Subject: [PATCH] Update bgcval2/batch_timeseries.py Co-authored-by: Valeriu Predoi --- bgcval2/batch_timeseries.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bgcval2/batch_timeseries.py b/bgcval2/batch_timeseries.py index c6303a94..7c275c4f 100644 --- a/bgcval2/batch_timeseries.py +++ b/bgcval2/batch_timeseries.py @@ -112,7 +112,11 @@ def submits_lotus(compare_yml, config_user, dry_run=False): else: # Submit job: print('Submitting:', ' '.join(command_txt)) - command1 = subprocess.Popen(command_txt) + command1 = subprocess.Popen( + command_txt, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT, + ) def main():