summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Lehmann <mail@robertlehmann.de>2014-10-30 15:59:14 +0100
committerRobert Lehmann <mail@robertlehmann.de>2014-10-30 15:59:14 +0100
commit798b01a70553a62106f33b67a6a4cf51e42ff469 (patch)
tree0d7b1697d01e1b53014264d5ac533508df36ef8a
parentcfe0b5cc6dcf0484ca75d08671d3be706e122c89 (diff)
downloadsphinx-798b01a70553a62106f33b67a6a4cf51e42ff469.tar.gz
Remove superfluous warning category.
-rw-r--r--sphinx/errors.py10
1 files changed, 2 insertions, 8 deletions
diff --git a/sphinx/errors.py b/sphinx/errors.py
index 4e9828dc..3d7a5eb4 100644
--- a/sphinx/errors.py
+++ b/sphinx/errors.py
@@ -3,8 +3,8 @@
sphinx.errors
~~~~~~~~~~~~~
- Contains SphinxError, a few subclasses (in an extra module to avoid
- circular import problems), and related classes.
+ Contains SphinxError and a few subclasses (in an extra module to avoid
+ circular import problems).
:copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
@@ -75,9 +75,3 @@ class SphinxParallelError(Exception):
def __str__(self):
return traceback.format_exception_only(
self.orig_exc.__class__, self.orig_exc)[0].strip()
-
-class ConfigWarning(UserWarning):
- """
- Base category for warnings about dubious configuration values.
- """
- pass