Steps to Reproduce:
python3 pwb.py shell >>> site = pywikibot.Site('en', 'wikipedia') >>> text = '[[Category:Ignore me]]\n[[Category:Old\u200e]]' >>> oldcat = pywikibot.Category(site, 'Old') >>> newcat = pywikibot.Category(site, 'New') >>> newtext = pywikibot.textlib.replaceCategoryInPlace(text, oldcat, newcat, site=site) >>> newtext
Actual Results:
'[[Category:Ignore me]]\n[[Category:Old\u200e]]'
Expected Results:
'[[Category:Ignore me]]\n[[Category:New]]'