Restructured text fixes so that pydoctor would return without an error

This commit is contained in:
Julian Stirling 2025-07-09 23:55:46 +01:00
parent 58b056988a
commit a84a916719
31 changed files with 269 additions and 256 deletions

View file

@ -43,10 +43,10 @@ def retrieve_log() -> PlainTextResponse:
Returns logs since we started running the server, up to a maximum of
250 messages. This log is the one shown in the UI and on the logging page.
It does not include any of the `uvicorn.access` logs as these are emmitted
It does not include any of the ``uvicorn.access`` logs as these are emmitted
every time any API route is called.
All logs, including `uvicorn.access` are logged to the OFM_LOG_FILE (see above)
All logs, including ``uvicorn.access`` are logged to the OFM_LOG_FILE (see above)
ths is the best place to get logs about crashes.
"""
return PlainTextResponse(OFM_HANDLER.log_history)