From b5316c31afc674c1b7753c1dc8be346b39539877 Mon Sep 17 00:00:00 2001
From: Greg Becker <becker33@llnl.gov>
Date: Tue, 14 May 2019 09:03:34 +0900
Subject: [PATCH] Remove vestigial print statement in module logic (#11438)

Remove a vestigial print statement introduced in #8570
---
 lib/spack/spack/util/module_cmd.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/lib/spack/spack/util/module_cmd.py b/lib/spack/spack/util/module_cmd.py
index 9f29d76711..a7796e716e 100644
--- a/lib/spack/spack/util/module_cmd.py
+++ b/lib/spack/spack/util/module_cmd.py
@@ -40,7 +40,6 @@ def module(*args):
         # Cray modules spit out warnings that we cannot supress.
         # This hack skips to the last output (the environment)
         env_output = str(module_p.communicate()[0].decode())
-        print(env_output)
         env = env_output.strip().split('\n')[-1]
 
         # Update os.environ with new dict
-- 
GitLab