diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2015-05-10 18:53:09 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2015-05-10 18:53:09 -0700 |
commit | 13ff1a9bf60dff03edadefa0c411600b210ca989 (patch) | |
tree | 08f98b5407be96c5f1b6c451a81047c5ef010f04 /lib | |
parent | b4a26c496c403ff976d2df18a9615d29dd07191c (diff) | |
download | spack-13ff1a9bf60dff03edadefa0c411600b210ca989.tar.gz spack-13ff1a9bf60dff03edadefa0c411600b210ca989.tar.bz2 spack-13ff1a9bf60dff03edadefa0c411600b210ca989.tar.xz spack-13ff1a9bf60dff03edadefa0c411600b210ca989.zip |
Remove debug print in link_tree
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/llnl/util/link_tree.py | 1 |
1 files changed, 0 insertions, 1 deletions
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 @@ class LinkTree(object): """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 |