jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/635060 )
Change subject: [FIX] Call ReferencesRobot.setup() ......................................................................
[FIX] Call ReferencesRobot.setup()
SingleSiteBot.run() is overwritten so setup() wasn't called
Bug: T265928 Change-Id: Ia628240b1088ffa0fee24f67d66a98e237c42a56 --- M scripts/reflinks.py 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: Rubin: Looks good to me, but someone else must approve Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/scripts/reflinks.py b/scripts/reflinks.py index da863b7..c0aa235 100755 --- a/scripts/reflinks.py +++ b/scripts/reflinks.py @@ -506,6 +506,7 @@
def run(self): """Run the Bot.""" + self.setup() editedpages = 0 for page in self.generator: try:
pywikibot-commits@lists.wikimedia.org