From 6bfb56f221a7d5f4e33b741bba5d7ffce134b8b8 Mon Sep 17 00:00:00 2001 From: Buddy Sandidge Date: Thu, 4 Jul 2013 12:44:43 -0700 Subject: [PATCH] Do not print message for already linked files --- autolink | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/autolink b/autolink index 9d7c3d7..7f814c3 100755 --- a/autolink +++ b/autolink @@ -47,8 +47,7 @@ def main(): if os.path.exists(config_path): if os.path.islink(config_path): if os.path.realpath(config_path) != file_path: - log(config_path, ("already a link '%s'" % - os.path.realpath(config_path))) + pass elif os.path.isfile(config_path): log(config_path, 'existing file, consider merge') continue