diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2024-07-05 13:36:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-05 22:36:45 +0200 |
commit | ba79542f3cdae25f7250f37139281bd84b662714 (patch) | |
tree | f4830f2faf545558b61f203be136672b7a842e91 /lib | |
parent | dc10c8a1ed240988f6b845763c96549ce74bf881 (diff) | |
download | spack-ba79542f3cdae25f7250f37139281bd84b662714.tar.gz spack-ba79542f3cdae25f7250f37139281bd84b662714.tar.bz2 spack-ba79542f3cdae25f7250f37139281bd84b662714.tar.xz spack-ba79542f3cdae25f7250f37139281bd84b662714.zip |
spack gc: remove debug print statement (#45067)
Signed-off-by: Todd Gamblin <tgamblin@llnl.gov>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/cmd/gc.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/spack/spack/cmd/gc.py b/lib/spack/spack/cmd/gc.py index 7e55dc4240..c7d023602e 100644 --- a/lib/spack/spack/cmd/gc.py +++ b/lib/spack/spack/cmd/gc.py @@ -56,7 +56,6 @@ def roots_from_environments(args, active_env): # -e says "also preserve things needed by this particular env" for env_name_or_dir in args.except_environment: - print("HMM", env_name_or_dir) if ev.exists(env_name_or_dir): env = ev.read(env_name_or_dir) elif ev.is_env_dir(env_name_or_dir): |