jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/635323 )
Change subject: [bugfix] Add Server414Error to pywikibot.__init__() ......................................................................
[bugfix] Add Server414Error to pywikibot.__init__()
This is a follow up of: [IMPR] add Server414Error in reflink.py and close file I6e7361ac8716954967bf959221b2dd922751ce1f
Bug: T266000 Change-Id: I0e3723cdf43db30bda09716ecd61c76ce48a238a --- M pywikibot/__init__.py 1 file changed, 3 insertions(+), 2 deletions(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/pywikibot/__init__.py b/pywikibot/__init__.py index 7f83449..f51482a 100644 --- a/pywikibot/__init__.py +++ b/pywikibot/__init__.py @@ -44,7 +44,7 @@ PageSaveRelatedError, PageNotSaved, OtherPageSaveError, LockedPage, CascadeLockedPage, LockedNoPage, NoCreateError, EditConflict, PageDeletedConflict, PageCreatedConflict, - ServerError, FatalServerError, Server504Error, + ServerError, FatalServerError, Server414Error, Server504Error, CaptchaError, SpamblacklistError, TitleblacklistError, CircularRedirect, InterwikiRedirectPage, WikiBaseError, NoWikibaseEntity, CoordinateGlobeUnknownException, @@ -89,7 +89,8 @@ 'NoSuchSite', 'NoUsername', 'NoWikibaseEntity', 'OtherPageSaveError', 'output', 'Page', 'PageCreatedConflict', 'PageDeletedConflict', 'PageNotSaved', 'PageRelatedError', 'PageSaveRelatedError', 'PropertyPage', - 'QuitKeyboardInterrupt', 'SectionError', 'Server504Error', 'ServerError', + 'QuitKeyboardInterrupt', 'SectionError', + 'ServerError', 'FatalServerError', 'Server414Error', 'Server504Error', 'showDiff', 'show_help', 'showHelp', 'Site', 'SiteDefinitionError', 'SiteLink', 'SpamblacklistError', 'stdout', 'Timestamp', 'TitleblacklistError', 'translate', 'ui', 'unicode2html',
pywikibot-commits@lists.wikimedia.org