jenkins-bot submitted this change.

View Change

Approvals: JJMC89: Looks good to me, approved jenkins-bot: Verified
[bugfix] Remove outdated opt._option which is already dropped

Bug: T284005
Change-Id: I38d9a96f63ea5c08bc5d086a1e8d43f326313780
---
M pywikibot/bot.py
1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/pywikibot/bot.py b/pywikibot/bot.py
index 118823a..216b39d 100644
--- a/pywikibot/bot.py
+++ b/pywikibot/bot.py
@@ -1136,11 +1136,9 @@

# self.opt contains all available options including defaults
self.opt = _OptionDict(self.__class__.__name__, self.available_options)
- # self.options contains the options overridden from defaults
- self.opt._options = {opt: options[opt]
- for opt in received_options & valid_options}
- self.opt.update(self.opt._options)
-
+ # update the options overridden from defaults
+ self.opt.update((opt, options[opt])
+ for opt in received_options & valid_options)
for opt in received_options - valid_options:
pywikibot.warning('{} is not a valid option. It was ignored.'
.format(opt))

To view, visit change 697400. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Change-Id: I38d9a96f63ea5c08bc5d086a1e8d43f326313780
Gerrit-Change-Number: 697400
Gerrit-PatchSet: 2
Gerrit-Owner: Xqt <info@gno.de>
Gerrit-Reviewer: JJMC89 <JJMC89.Wikimedia@gmail.com>
Gerrit-Reviewer: jenkins-bot
Gerrit-MessageType: merged