From ef4477f356c321758da6573d9f11a1b72f1afb59 Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Sat, 21 Jul 2018 00:35:04 +0200 Subject: [PATCH] ignore comparion . and .. --- dotdrop/updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotdrop/updater.py b/dotdrop/updater.py index 98fd3b8..a3f1923 100644 --- a/dotdrop/updater.py +++ b/dotdrop/updater.py @@ -108,7 +108,7 @@ class Updater: if self.debug: self.log.dbg('handle update for dir {} to {}'.format(left, right)) # find the difference - diff = filecmp.dircmp(left, right, ignore=None, hide=None) + diff = filecmp.dircmp(left, right, ignore=None) # handle directories diff # create dirs that don't exist in dotdrop if self.debug: