From 147b8050495fe7f66029b38d1cfd6be75ecf4cbc Mon Sep 17 00:00:00 2001 From: Marcel Robitaille Date: Sat, 6 Feb 2021 22:57:31 -0500 Subject: [PATCH] Fix args to call to `_ignore` --- dotdrop/updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotdrop/updater.py b/dotdrop/updater.py index 3c0c44e..1f5891e 100644 --- a/dotdrop/updater.py +++ b/dotdrop/updater.py @@ -360,7 +360,7 @@ class Updater: fleft = os.path.join(left, f) fright = os.path.join(right, f) if (ignore_missing_in_dotdrop and not os.path.exists(fright)) or \ - self._ignore([exist, new]): + self._ignore([fleft, fright]): continue if self.dry: self.log.dry('would cp {} {}'.format(fleft, fright))