Remove debug print in link_tree

This commit is contained in:
Todd Gamblin 2015-05-10 18:53:09 -07:00
parent b4a26c496c
commit 13ff1a9bf6

View file

@ -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