jenkins-bot has submitted this change and it was merged.
Change subject: Match 'score' in textlib ......................................................................
Match 'score' in textlib
Change-Id: Ic69777f3db3c235380eabd778a5052403b0f8ce6 --- M pywikibot/textlib.py 1 file changed, 2 insertions(+), 1 deletion(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/pywikibot/textlib.py b/pywikibot/textlib.py index 41c61ab..06edb36 100644 --- a/pywikibot/textlib.py +++ b/pywikibot/textlib.py @@ -7,7 +7,7 @@
""" # -# (C) Pywikibot team, 2004-2013 +# (C) Pywikibot team, 2004-2016 # # Distributed under the terms of the MIT license. # @@ -69,6 +69,7 @@ # preformatted text 'pre': re.compile(r'(?ism)<pre>.*?</pre>'), 'source': re.compile(r'(?is)<source .*?</source>'), + 'score': re.compile(r'(?is)<score.*?</score>'), # inline references 'ref': re.compile(r'(?ism)<ref[ >].*?</ref>'), # lines that start with a space are shown in a monospace font and
pywikibot-commits@lists.wikimedia.org