1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 19:09:44 +00:00

Fix args to call to _ignore

This commit is contained in:
Marcel Robitaille
2021-02-06 22:57:31 -05:00
parent 369c52e382
commit 147b805049

View File

@@ -360,7 +360,7 @@ class Updater:
fleft = os.path.join(left, f) fleft = os.path.join(left, f)
fright = os.path.join(right, f) fright = os.path.join(right, f)
if (ignore_missing_in_dotdrop and not os.path.exists(fright)) or \ if (ignore_missing_in_dotdrop and not os.path.exists(fright)) or \
self._ignore([exist, new]): self._ignore([fleft, fright]):
continue continue
if self.dry: if self.dry:
self.log.dry('would cp {} {}'.format(fleft, fright)) self.log.dry('would cp {} {}'.format(fleft, fright))