Use plural/singular form of them/it for patches
This commit is contained in:
parent
15119a19b0
commit
1745496a07
@ -914,8 +914,9 @@ class RioLua(Lua):
|
|||||||
return
|
return
|
||||||
|
|
||||||
if not opts.patch:
|
if not opts.patch:
|
||||||
print("Skipping {} patch{}, use --patch to apply them".format(
|
print("Skipping {} patch{}, use --patch to apply {}".format(
|
||||||
len(patches), "" if len(patches) == 1 else "es"))
|
len(patches), "" if len(patches) == 1 else "es",
|
||||||
|
"it" if len(patches) == 1 else "them"))
|
||||||
return
|
return
|
||||||
|
|
||||||
applied = sum(map(self.apply_patch, patches))
|
applied = sum(map(self.apply_patch, patches))
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user