jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/673476 )
Change subject: [bugfix] fix reporting in welcome.py ......................................................................
[bugfix] fix reporting in welcome.py
write_log did not write the remaining bad account names. Solve this issue.
Change-Id: I75dc87718862721a0eddc5c78964ab228c49ed5f --- M scripts/welcome.py 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/scripts/welcome.py b/scripts/welcome.py index f03fa4d..9db3913 100755 --- a/scripts/welcome.py +++ b/scripts/welcome.py @@ -867,7 +867,7 @@ if hasattr(self, '_BAQueue'): self.show_status() pywikibot.output('Putting bad name to report page...') - self.reportBadAccount(None, final=True) + self.report_bad_account()
@staticmethod def show_status(message=Msg.DEFAULT):
pywikibot-commits@lists.wikimedia.org