jenkins-bot has submitted this change and it was merged.
Change subject: Another user-agent related fixup ......................................................................
Another user-agent related fixup
config2 was previously able to be run under python3. This fixes a recent commit which broke that.
Change-Id: Iec2b9357b09a88cbda61a218d502274179d83da4 --- M pywikibot/config2.py 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Ricordisamoa: Looks good to me, approved jenkins-bot: Verified
diff --git a/pywikibot/config2.py b/pywikibot/config2.py index 2f00d57..8ef9694 100644 --- a/pywikibot/config2.py +++ b/pywikibot/config2.py @@ -173,7 +173,7 @@
for arg in sys.argv[1:]: if arg.startswith("-verbose") or arg == "-v": - print "The base directory is %s" % base_dir + print("The base directory is %s" % base_dir) break family_files = {}
pywikibot-commits@lists.wikimedia.org