Skip to content

Commit

Permalink
Update bgcval2/batch_timeseries.py
Browse files Browse the repository at this point in the history
Co-authored-by: Valeriu Predoi <[email protected]>
  • Loading branch information
ledm and valeriupredoi authored Nov 27, 2023
1 parent da23923 commit 431b54d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bgcval2/batch_timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit 431b54d

Please sign in to comment.