diff options
Diffstat (limited to 'pomu/package.py')
-rw-r--r-- | pomu/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pomu/package.py b/pomu/package.py index e145b88..4b2ee5f 100644 --- a/pomu/package.py +++ b/pomu/package.py @@ -95,7 +95,8 @@ class Package(): return Result.Ok().and_(self.apply_patches()) def patch(self, patch): - list_add(self.patches, patch) + if patch: + list_add(self.patches, patch) def apply_patches(self, revert=False): """Applies a sequence of patches at the root (after merging)""" |