Xqt submitted this change.
archivebot: make TimeStripper more resilient for itwiki
Bug: T415880
Change-Id: I95a8339295a01631781dd6f2bfa1ccd60170c9da
Signed-off-by: Xqt <info@gno.de>
---
M pywikibot/textlib.py
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/pywikibot/textlib.py b/pywikibot/textlib.py
index 97ea55a..beb5bdc 100644
--- a/pywikibot/textlib.py
+++ b/pywikibot/textlib.py
@@ -1,6 +1,6 @@
"""Functions for manipulating wiki-text."""
#
-# (C) Pywikibot team, 2008-2025
+# (C) Pywikibot team, 2008-2026
#
# Distributed under the terms of the MIT license.
#
@@ -2234,8 +2234,8 @@
self.origNames2monthNum = {}
# use first_lower/first_upper for those language where month names
- # were changed: T324310, T356175
- if self.site.lang in ('hy', 'vi'):
+ # were changed: T324310, T356175, T415880
+ if self.site.lang in ('hy', 'it', 'vi'):
functions = [first_upper, first_lower]
else:
functions = [str]
To view, visit change 1235109. To unsubscribe, or for help writing mail filters, visit settings.