diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-11-14 22:34:32 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-12-12 18:24:53 +0900 |
commit | 773173b11f04f08547999c0799911fc7aa96d0d3 (patch) | |
tree | 340bf2b5da3462739a51d89ce6962eec4a179b12 /sphinx/util/docutils.py | |
parent | 16c244cd6af79afa85202af1a0f1e325c175994f (diff) | |
download | sphinx-git-773173b11f04f08547999c0799911fc7aa96d0d3.tar.gz |
Remove LoggingReporter.set_conditions() (unused)
Diffstat (limited to 'sphinx/util/docutils.py')
-rw-r--r-- | sphinx/util/docutils.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sphinx/util/docutils.py b/sphinx/util/docutils.py index d24a8f827..8da89713d 100644 --- a/sphinx/util/docutils.py +++ b/sphinx/util/docutils.py @@ -181,10 +181,6 @@ class LoggingReporter(Reporter): Reporter.__init__(self, source, report_level, halt_level, stream, debug, error_handler=error_handler) - def set_conditions(self, category, report_level, halt_level, debug=False): - # type: (unicode, int, int, bool) -> None - Reporter.set_conditions(self, category, report_level, halt_level, debug=debug) - def is_html5_writer_available(): # type: () -> bool |