jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/462304 )
Change subject: [cleanup] cleanup scripts/surnames_redirects.py ......................................................................
[cleanup] cleanup scripts/surnames_redirects.py
- use single quotes for string literals and double quotes with strings that consist of single quotes within them - use str.format(...) instead of modulo for type specifiers in strings
Change-Id: I171c6169a8270419b1afc12e99663c12e1a5c395 --- M scripts/surnames_redirects.py 1 file changed, 5 insertions(+), 5 deletions(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/scripts/surnames_redirects.py b/scripts/surnames_redirects.py index 5ea2abd..21ef0d1 100755 --- a/scripts/surnames_redirects.py +++ b/scripts/surnames_redirects.py @@ -83,11 +83,11 @@
new_page = pywikibot.Page(site, possible_name) if new_page.exists(): - pywikibot.output('%s already exists, skipping...' - % new_page.title(as_link=True)) + pywikibot.output('{0} already exists, skipping...' + .format(new_page.title(as_link=True))) else: - pywikibot.output('%s doesn't exist' - % new_page.title(as_link=True)) + pywikibot.output("{0} doesn't exist" + .format(new_page.title(as_link=True))) choice = pywikibot.input_yn( 'Do you want to create a redirect?') if choice: @@ -127,5 +127,5 @@ pywikibot.bot.suggest_help(missing_generator=True)
-if __name__ == "__main__": +if __name__ == '__main__': main()
pywikibot-commits@lists.wikimedia.org