From 1745496a07a14fe4bd6b8c5f533bf9dfa93358cc Mon Sep 17 00:00:00 2001 From: mpeterv Date: Fri, 15 Apr 2016 23:00:14 +0300 Subject: [PATCH] Use plural/singular form of them/it for patches --- hererocks.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hererocks.py b/hererocks.py index f714a6a..adf72fc 100755 --- a/hererocks.py +++ b/hererocks.py @@ -914,8 +914,9 @@ class RioLua(Lua): 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))