diff options
author | Georg Brandl <georg@python.org> | 2010-11-20 17:41:20 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-11-20 17:41:20 +0100 |
commit | 2ab934b2322050f3554c5f28ef4827ebecd90571 (patch) | |
tree | 703750d8e3c1b82196803976af3875cabc55b077 /sphinx/websupport/errors.py | |
parent | 47bc250f19e80ce705a6435184c22d40e4a3b8c7 (diff) | |
download | sphinx-git-2ab934b2322050f3554c5f28ef4827ebecd90571.tar.gz |
Make websupport builder inherit from serializing builder, remove separate WebSupportApp.
Diffstat (limited to 'sphinx/websupport/errors.py')
-rw-r--r-- | sphinx/websupport/errors.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sphinx/websupport/errors.py b/sphinx/websupport/errors.py index 53106dfb8..62309ed20 100644 --- a/sphinx/websupport/errors.py +++ b/sphinx/websupport/errors.py @@ -9,18 +9,11 @@ :license: BSD, see LICENSE for details. """ -__all__ = ['DocumentNotFoundError', 'SrcdirNotSpecifiedError', - 'UserNotAuthorizedError', 'CommentNotAllowedError', - 'NullSearchException'] class DocumentNotFoundError(Exception): pass -class SrcdirNotSpecifiedError(Exception): - pass - - class UserNotAuthorizedError(Exception): pass |