Dalba added a comment.

It's happening within first_upper function.

def first_upper(string):
	    """
	    Return a string with the first character capitalized.
	
	    Empty strings are supported. The original string is not changed.
	
	    Warning: Python 2 and 3 capitalize "ß" differently. MediaWiki does
	    not capitalize ß at the beginning. See T179115.
	    """
	    first = string[:1]
	    if first != 'ß':
	        first = first.upper()
	    return first + string[1:]

TASK DETAIL
https://phabricator.wikimedia.org/T200357

EMAIL PREFERENCES
https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Dalba
Cc: Dalba, Xqt, Aklapper, pywikibot-bugs-list, Framawiki, Tbscho, MayS, Mdupont, JJMC89, Avicennasis, mys_721tx, jayvdb, Masti, Alchimista, Rxy
_______________________________________________
pywikibot-bugs mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs

Reply via email to