Skip to content

Commit

Permalink
cleanup: remove extraneous prints (#12474)
Browse files Browse the repository at this point in the history
Removes messages accidentally introduced in #12072 .
  • Loading branch information
tldahlgren committed Aug 19, 2019
1 parent 31ff791 commit aed204e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lib/spack/spack/stage.py
Expand Up @@ -438,10 +438,8 @@ def create(self):
"""
# 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)

Expand Down

0 comments on commit aed204e

Please sign in to comment.