jenkins-bot has submitted this change and it was merged.
Change subject: Fix bug 68543 ......................................................................
Fix bug 68543
Doesn't matter the sandbox is redirected or not
Change-Id: Ibfc472411a502f2332ccc2930890066198c28398 --- M scripts/clean_sandbox.py 1 file changed, 5 insertions(+), 1 deletion(-)
Approvals: John Vandenberg: Looks good to me, approved jenkins-bot: Verified
diff --git a/scripts/clean_sandbox.py b/scripts/clean_sandbox.py index 6fc5398..6939777 100755 --- a/scripts/clean_sandbox.py +++ b/scripts/clean_sandbox.py @@ -193,8 +193,12 @@ sandboxPage = pywikibot.Page(self.site, title) pywikibot.output(u'Preparing to process sandbox page %s' % sandboxPage.title(asLink=True)) + if sandboxPage.isRedirectPage(): + pywikibot.warning( + u'%s is a redirect page, cleaning it anyway' + % sandboxPage.title(asLink=True)) try: - text = sandboxPage.get() + text = sandboxPage.get(get_redirect=True) if not self.getOption('text'): translatedContent = i18n.translate(self.site, content) else:
pywikibot-commits@lists.wikimedia.org