diff --git a/hererocks.py b/hererocks.py index f714a6a..adf72fc 100755 --- a/hererocks.py +++ b/hererocks.py @@ -914,8 +914,9 @@ def handle_patches(self): return if not opts.patch: - print("Skipping {} patch{}, use --patch to apply them".format( - len(patches), "" if len(patches) == 1 else "es")) + print("Skipping {} patch{}, use --patch to apply {}".format( + len(patches), "" if len(patches) == 1 else "es", + "it" if len(patches) == 1 else "them")) return applied = sum(map(self.apply_patch, patches))