jenkins-bot has submitted this change and it was merged.
Change subject: [FIX] Allow instantiation of CategoryRemoveRobot ......................................................................
[FIX] Allow instantiation of CategoryRemoveRobot
Bug: 69829 Change-Id: Ie672fcfd514aeca08b13c3b6cc04260adef5a8b1 --- M scripts/category.py 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: John Vandenberg: Looks good to me, approved jenkins-bot: Verified
diff --git a/scripts/category.py b/scripts/category.py index 82edeb6..81b7ee2 100755 --- a/scripts/category.py +++ b/scripts/category.py @@ -676,7 +676,7 @@ def __init__(self, catTitle, batchMode=False, editSummary='', useSummaryForDeletion=CategoryMoveRobot.DELETION_COMMENT_AUTOMATIC, titleRegex=None, inPlace=False, pagesonly=False): - CategoryMoveRobot.__init__( + super(CategoryRemoveRobot, self).__init__( oldcat=catTitle, batch=batchMode, comment=editSummary,
pywikibot-commits@lists.wikimedia.org