1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-05 09:43:49 +00:00

ignore comparion . and ..

This commit is contained in:
deadc0de6
2018-07-21 00:35:04 +02:00
parent cd4ac8414f
commit ef4477f356

View File

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