Skip to content
Snippets Groups Projects
Commit b5316c31 authored by Greg Becker's avatar Greg Becker Committed by Peter Scheibel
Browse files

Remove vestigial print statement in module logic (#11438)

Remove a vestigial print statement introduced in #8570
parent 4a013adc
No related branches found
No related tags found
No related merge requests found
...@@ -40,7 +40,6 @@ def module(*args): ...@@ -40,7 +40,6 @@ def module(*args):
# Cray modules spit out warnings that we cannot supress. # Cray modules spit out warnings that we cannot supress.
# This hack skips to the last output (the environment) # This hack skips to the last output (the environment)
env_output = str(module_p.communicate()[0].decode()) env_output = str(module_p.communicate()[0].decode())
print(env_output)
env = env_output.strip().split('\n')[-1] env = env_output.strip().split('\n')[-1]
# Update os.environ with new dict # Update os.environ with new dict
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment