jenkins-bot has submitted this change and it was merged.
Change subject: [FIX] Bot: The unicode title must be used when logging it. ......................................................................
[FIX] Bot: The unicode title must be used when logging it.
Change-Id: Ieced102c74a0795be118817ef8b4eb45c1f274c9 --- M pywikibot/bot.py 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: John Vandenberg: Looks good to me, approved jenkins-bot: Verified
diff --git a/pywikibot/bot.py b/pywikibot/bot.py index b332099..614814f 100644 --- a/pywikibot/bot.py +++ b/pywikibot/bot.py @@ -857,7 +857,7 @@ """ if page != self._current_page: self._current_page = page - msg = u'Working on %r' % page + msg = u'Working on %r' % page.title() if config.colorized_output: log(msg) stdout(u'\n\n>>> \03{lightpurple}%s\03{default} <<<'
pywikibot-commits@lists.wikimedia.org