From e2608678968f2367e71cf6531c936026e5923b91 Mon Sep 17 00:00:00 2001 From: Thomas Rast Date: Tue, 10 Feb 2009 09:23:55 +0100 Subject: [PATCH] Announce all missing files when ignoring a patch instead of just the first --- patch.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/patch.py b/patch.py index 4cc256f..459ac99 100644 --- a/patch.py +++ b/patch.py @@ -55,8 +55,7 @@ class Patch(object): self.notes = ''.join(notes) def _check_file(self, name): - if (not self.missing_files - and os.path.basename(name) not in self.file_cache): + if os.path.basename(name) not in self.file_cache: self.missing_files = True print 'patch for missing file "%s"' % name -- 2.11.4.GIT