jenkins-bot has submitted this change. ( 
https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1318197?usp=email )

Change subject: exceptions: replace tree markers with Unicode box-drawing 
characters
......................................................................

exceptions: replace tree markers with Unicode box-drawing characters

Change-Id: Iee612b8f7366f21a266448a56ae25455d77140af
---
M pywikibot/exceptions.py
1 file changed, 60 insertions(+), 60 deletions(-)

Approvals:
  Xqt: Looks good to me, approved
  jenkins-bot: Verified




diff --git a/pywikibot/exceptions.py b/pywikibot/exceptions.py
index 9fdb2b4..9cd75cb 100644
--- a/pywikibot/exceptions.py
+++ b/pywikibot/exceptions.py
@@ -9,70 +9,70 @@
 the framework::

     Exception
-     +-- Error
-          +-- APIError
-          |    +-- APIMWError
-          |    +-- UploadError
-          +-- AutoblockUserError
-          +-- CaptchaError
-          +-- ClientError
-          |    +-- Client414Error
-          +-- InvalidTitleError
-          +-- NoUsernameError
-          +-- PageInUseError
-          +-- PageRelatedError
-          |    +-- CircularRedirectError
-          |    +-- InterwikiRedirectPageError
-          |    +-- IsNotRedirectPageError
-          |    +-- IsRedirectPageError
-          |    +-- NoMoveTargetError
-          |    +-- NoPageError
-          |    +-- NoRenameTargetError
-          |    +-- NotEmailableError
-          |    +-- PageLoadRelatedError
-          |    |    +-- InconsistentTitleError
-          |    |    +-- InvalidPageError
-          |    |    +-- NoSiteLinkError
-          |    +-- PageSaveRelatedError
-          |    |    +-- EditConflictError
-          |    |    |    +-- ArticleExistsConflictError
-          |    |    |    +-- PageCreatedConflictError
-          |    |    |    +-- PageDeletedConflictError
-          |    |    +-- LockedPageError
-          |    |    |    +-- LockedNoPageError
-          |    |    |    +-- CascadeLockedPageError
-          |    |    +-- NoCreateError
-          |    |    +-- OtherPageSaveError
-          |    |    +-- SpamblacklistError
-          |    |    +-- TitleblacklistError
-          |    |    +-- AbuseFilterDisallowedError
-          |    +-- UnsupportedPageError
-          +-- SectionError
-          +-- ServerError
-          |    +-- FatalServerError
-          |    +-- Server504Error
-          +-- SiteDefinitionError
-          |    +-- UnknownFamilyError
-          |    +-- UnknownSiteError
-          +-- ApiTimeoutError
-          |    +-- MaxlagTimeoutError
-          +-- TranslationError
-          +-- UnexpectedAPIDataError (ValueError)
-          +-- UnknownExtensionError (NotImplementedError)
-          +-- UserRightsError
-          |    +-- HiddenKeyError (KeyError)
-          +-- VersionParseError
-          +-- WikiBaseError
-               +-- CoordinateGlobeUnknownError (NotImplementedError)
-               +-- EntityTypeUnknownError
-               +-- NoWikibaseEntityError
+     └── Error
+          ├── APIError
+          |    ├── APIMWError
+          |    └── UploadError
+          ├── AutoblockUserError
+          ├── CaptchaError
+          ├── ClientError
+          |    └── Client414Error
+          ├── InvalidTitleError
+          ├── NoUsernameError
+          ├── PageInUseError
+          ├── PageRelatedError
+          |    ├── CircularRedirectError
+          |    ├── InterwikiRedirectPageError
+          |    ├── IsNotRedirectPageError
+          |    ├── IsRedirectPageError
+          |    ├── NoMoveTargetError
+          |    ├── NoPageError
+          |    ├── NoRenameTargetError
+          |    ├── NotEmailableError
+          |    ├── PageLoadRelatedError
+          |    |    ├── InconsistentTitleError
+          |    |    ├── InvalidPageError
+          |    |    └── NoSiteLinkError
+          |    ├── PageSaveRelatedError
+          |    |    ├── EditConflictError
+          |    |    |    ├── ArticleExistsConflictError
+          |    |    |    ├── PageCreatedConflictError
+          |    |    |    └── PageDeletedConflictError
+          |    |    ├── LockedPageError
+          |    |    |    ├── LockedNoPageError
+          |    |    |    └── CascadeLockedPageError
+          |    |    ├── NoCreateError
+          |    |    ├── OtherPageSaveError
+          |    |    ├── SpamblacklistError
+          |    |    ├── TitleblacklistError
+          |    |    └── AbuseFilterDisallowedError
+          |    └── UnsupportedPageError
+          ├── SectionError
+          ├── ServerError
+          |    ├── FatalServerError
+          |    └── Server504Error
+          ├── SiteDefinitionError
+          |    ├── UnknownFamilyError
+          |    └── UnknownSiteError
+          ├── ApiTimeoutError
+          |    └── MaxlagTimeoutError
+          ├── TranslationError
+          ├── UnexpectedAPIDataError (ValueError)
+          ├── UnknownExtensionError (NotImplementedError)
+          ├── UserRightsError
+          |    └── HiddenKeyError (KeyError)
+          ├── VersionParseError
+          └── WikiBaseError
+               ├── CoordinateGlobeUnknownError (NotImplementedError)
+               ├── EntityTypeUnknownError
+               └── NoWikibaseEntityError

     UserWarning
-     +-- ArgumentDeprecationWarning (FutureWarning)
-     +-- FamilyMaintenanceWarning
+     ├── ArgumentDeprecationWarning (FutureWarning)
+     └── FamilyMaintenanceWarning

     RuntimeWarning
-     +-- NotImplementedWarning
+     └── NotImplementedWarning


 Error: Base class, all exceptions should the subclass of this class.

--
To view, visit 
https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1318197?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.wikimedia.org/r/settings?usp=email

Gerrit-MessageType: merged
Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Change-Id: Iee612b8f7366f21a266448a56ae25455d77140af
Gerrit-Change-Number: 1318197
Gerrit-PatchSet: 1
Gerrit-Owner: Xqt <[email protected]>
Gerrit-Reviewer: Xqt <[email protected]>
Gerrit-Reviewer: jenkins-bot
_______________________________________________
Pywikibot-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to