summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTamara Dahlgren <35777542+tldahlgren@users.noreply.github.com>2019-08-19 14:49:09 -0700
committerGitHub <noreply@github.com>2019-08-19 14:49:09 -0700
commitaed204e409c7163e5baafb8aaa718ec155b25842 (patch)
treedcef56174acd5aadc87ca97733bd809c3e652e36 /lib
parent31ff791180614c03f2727349bfb74d9ecfdb7ef7 (diff)
downloadspack-aed204e409c7163e5baafb8aaa718ec155b25842.tar.gz
spack-aed204e409c7163e5baafb8aaa718ec155b25842.tar.bz2
spack-aed204e409c7163e5baafb8aaa718ec155b25842.tar.xz
spack-aed204e409c7163e5baafb8aaa718ec155b25842.zip
cleanup: remove extraneous prints (#12474)
Removes messages accidentally introduced in #12072 .
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/stage.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/spack/spack/stage.py b/lib/spack/spack/stage.py
index aa9920ca58..5dc2a8ddfc 100644
--- a/lib/spack/spack/stage.py
+++ b/lib/spack/spack/stage.py
@@ -438,10 +438,8 @@ class Stage(object):
"""
# Emulate file permissions for tempfile.mkdtemp.
if not os.path.exists(self.path):
- print("TLD: %s does not exist, creating it" % self.path)
mkdirp(self.path, mode=stat.S_IRWXU)
elif not os.path.isdir(self.path):
- print("TLD: %s is not a directory, replacing it" % self.path)
os.remove(self.path)
mkdirp(self.path, mode=stat.S_IRWXU)