diff options
| author | William Schwartz <wkschwartz@gmail.com> | 2021-03-30 15:57:33 -0500 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-03-31 08:41:57 +0200 |
| commit | 7248afe12f40361870388ecdd7e0038eb0d58e47 (patch) | |
| tree | c08a80c87372671f7e6015ed0f5cae9c278cb5b9 /docs/howto/error-reporting.txt | |
| parent | db5b75f10fe211af9fab9094f937436760db8488 (diff) | |
Refs #32105 -- Moved ExceptionReporter template paths to properties.
Refs #32316.
Diffstat (limited to 'docs/howto/error-reporting.txt')
| -rw-r--r-- | docs/howto/error-reporting.txt | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/docs/howto/error-reporting.txt b/docs/howto/error-reporting.txt index 1122f47b1b..7d5b5baf84 100644 --- a/docs/howto/error-reporting.txt +++ b/docs/howto/error-reporting.txt @@ -323,17 +323,18 @@ Your custom reporter class needs to inherit from .. versionadded:: 3.2 - A :class:`pathlib.Path` representing the absolute filesystem path to a - template for rendering the HTML representation of the exception. - Defaults to the Django provided template. + Property that returns a :class:`pathlib.Path` representing the absolute + filesystem path to a template for rendering the HTML representation of + the exception. Defaults to the Django provided template. .. attribute:: text_template_path .. versionadded:: 3.2 - A :class:`pathlib.Path` representing the absolute filesystem path to a - template for rendering the plain-text representation of the exception. - Defaults to the Django provided template. + Property that returns a :class:`pathlib.Path` representing the absolute + filesystem path to a template for rendering the plain-text + representation of the exception. Defaults to the Django provided + template. .. method:: get_traceback_data() |
