Remove temporary re_symlink logging shim

This commit is contained in:
James R. Barlow
2016-12-01 00:31:42 -08:00
parent 444da02523
commit 2c5437135c
-6
View File
@@ -432,12 +432,6 @@ def re_symlink(input_file, soft_link_name, log=_log):
Helper function: relinks soft symbolic link if necessary
"""
if log is None:
class Blackhole:
def debug(self, msg):
pass
log = Blackhole()
# Guard against soft linking to oneself
if input_file == soft_link_name:
log.debug("Warning: No symbolic link made. You are using " +