jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/462311 )
Change subject: [cleanup] cleanup scripts/shell.py ......................................................................
[cleanup] cleanup scripts/shell.py
- use single quotes for string literals
Change-Id: Ie15ac5f0feb54d5b46f1a8aec9a1e90a2ad80745 --- M scripts/shell.py 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/scripts/shell.py b/scripts/shell.py index be01d95..3223520 100755 --- a/scripts/shell.py +++ b/scripts/shell.py @@ -51,7 +51,7 @@ code.interact("""Welcome to the Pywikibot interactive shell!""", local=env)
-if __name__ == "__main__": +if __name__ == '__main__': if sys.platform == 'win32': import os os.system('title Python {} Shell'.format(*sys.version.split(' ', 1)))
pywikibot-commits@lists.wikimedia.org