summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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