Fix documentation typo (#10942)
This commit is contained in:
parent
fd6a4507ac
commit
158f41fdf8
|
@ -1996,7 +1996,7 @@ All the command-line flags can be obtained by running ``pytest --help``::
|
||||||
Auto-indent multiline messages passed to the logging
|
Auto-indent multiline messages passed to the logging
|
||||||
module. Accepts true|on, false|off or an integer.
|
module. Accepts true|on, false|off or an integer.
|
||||||
--log-disable=LOGGER_DISABLE
|
--log-disable=LOGGER_DISABLE
|
||||||
Disable a logger by name. Can be passed multipe
|
Disable a logger by name. Can be passed multiple
|
||||||
times.
|
times.
|
||||||
|
|
||||||
[pytest] ini-options in the first pytest.ini|tox.ini|setup.cfg|pyproject.toml file found:
|
[pytest] ini-options in the first pytest.ini|tox.ini|setup.cfg|pyproject.toml file found:
|
||||||
|
|
|
@ -302,7 +302,7 @@ def pytest_addoption(parser: Parser) -> None:
|
||||||
action="append",
|
action="append",
|
||||||
default=[],
|
default=[],
|
||||||
dest="logger_disable",
|
dest="logger_disable",
|
||||||
help="Disable a logger by name. Can be passed multipe times.",
|
help="Disable a logger by name. Can be passed multiple times.",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue