jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/462913 )
Change subject: [cleanup] cleanup scripts/maintenance/compat2core.py ......................................................................
[cleanup] cleanup scripts/maintenance/compat2core.py
- remove preleading "u" from strings - use single quotes for string literals - use str.format(...) instead of modulo for substituting type specifier arguments with placeholders
Change-Id: Ie30db8720ed37861e42b76a4e6b2ddfda8ee5ca4 --- M scripts/maintenance/compat2core.py 1 file changed, 7 insertions(+), 6 deletions(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/scripts/maintenance/compat2core.py b/scripts/maintenance/compat2core.py index cfc807d..00afe9d 100755 --- a/scripts/maintenance/compat2core.py +++ b/scripts/maintenance/compat2core.py @@ -56,7 +56,7 @@ ('import catlib\r?\n', ''), ('import userlib\r?\n', ''), # change wikipedia to pywikibot, exclude URLs - (r'(?<!.)wikipedia.', u'pywikibot.'), + (r'(?<!.)wikipedia.', 'pywikibot.'), # site instance call (r'pywikibot.getSite\s*(\s*', 'pywikibot.Site('), # lang is different from code. We should use code in core @@ -152,21 +152,22 @@ '(no input to leave):') if not self.source: exit() - if not self.source.endswith(u'.py'): + if not self.source.endswith('.py'): self.source += '.py' if os.path.exists(self.source): break self.source = os.path.join('scripts', self.source) if os.path.exists(self.source): break - pywikibot.output(u'%s does not exist. Please retry.' % self.source) + pywikibot.output('{} does not exist. Please retry.' + .format(self.source)) self.source = None
def get_dest(self): """Ask for destination script name.""" - self.dest = u'%s-core.%s' % tuple(self.source.rsplit(u'.', 1)) + self.dest = '%s-core.%s' % tuple(self.source.rsplit('.', 1)) if not self.warnonly and not pywikibot.input_yn( - u'Destination file is %s.' % self.dest, + 'Destination file is {}.'.format(self.dest), default=True, automatic_quit=False): pywikibot.output('Quitting...') exit() @@ -209,6 +210,6 @@ bot.run()
-if __name__ == "__main__": +if __name__ == '__main__': pywikibot.stopme() # we do not work on any site main()
pywikibot-commits@lists.wikimedia.org