diff --git a/lib/spack/spack/stage.py b/lib/spack/spack/stage.py index aa9920ca581dea..5dc2a8ddfc340f 100644 --- a/lib/spack/spack/stage.py +++ b/lib/spack/spack/stage.py @@ -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)