From 13ff1a9bf60dff03edadefa0c411600b210ca989 Mon Sep 17 00:00:00 2001 From: Todd Gamblin Date: Sun, 10 May 2015 18:53:09 -0700 Subject: [PATCH] Remove debug print in link_tree --- lib/spack/llnl/util/link_tree.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/spack/llnl/util/link_tree.py b/lib/spack/llnl/util/link_tree.py index db13b80780..583f077b79 100644 --- a/lib/spack/llnl/util/link_tree.py +++ b/lib/spack/llnl/util/link_tree.py @@ -54,7 +54,6 @@ def find_conflict(self, dest_root, **kwargs): """Returns the first file in dest that conflicts with src""" kwargs['follow_nonexisting'] = False for src, dest in traverse_tree(self._root, dest_root, **kwargs): - print src, dest if os.path.isdir(src): if os.path.exists(dest) and not os.path.isdir(dest): return dest