fix error in caplog docs.

This commit is contained in:
Rachel Kogan 2018-04-17 16:17:29 -04:00
parent e012dbe346
commit bb8984f5ed
2 changed files with 6 additions and 6 deletions

View File

@ -289,9 +289,9 @@ def caplog(request):
Captured logs are available through the following methods:: Captured logs are available through the following methods::
* caplog.text() -> string containing formatted log output * caplog.text -> string containing formatted log output
* caplog.records() -> list of logging.LogRecord instances * caplog.records -> list of logging.LogRecord instances
* caplog.record_tuples() -> list of (logger_name, level, message) tuples * caplog.record_tuples -> list of (logger_name, level, message) tuples
* caplog.clear() -> clear captured records and formatted log output string * caplog.clear() -> clear captured records and formatted log output string
""" """
result = LogCaptureFixture(request.node) result = LogCaptureFixture(request.node)

View File

@ -77,9 +77,9 @@ For information about fixtures, see :ref:`fixtures`. To see a complete list of a
Captured logs are available through the following methods:: Captured logs are available through the following methods::
* caplog.text() -> string containing formatted log output * caplog.text -> string containing formatted log output
* caplog.records() -> list of logging.LogRecord instances * caplog.records -> list of logging.LogRecord instances
* caplog.record_tuples() -> list of (logger_name, level, message) tuples * caplog.record_tuples -> list of (logger_name, level, message) tuples
* caplog.clear() -> clear captured records and formatted log output string * caplog.clear() -> clear captured records and formatted log output string
monkeypatch monkeypatch
The returned ``monkeypatch`` fixture provides these The returned ``monkeypatch`` fixture provides these