Skip to content

Commit 80ba0cb

Browse files
authored
Parser: Drop epilog message for Sphinx help (#3653)
1 parent 43e2d98 commit 80ba0cb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/tox/config/cli/parse.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,10 @@ def _get_parser_doc() -> ToxParser:
9191

9292
MANAGER.load_plugins(Path.cwd())
9393

94-
return _get_parser() # pragma: no cover
94+
parser = _get_parser() # pragma: no cover
95+
# Remove epilog message from help when formatting website docs
96+
parser.epilog = None
97+
return parser
9598

9699

97100
__all__ = (

0 commit comments

Comments
 (0)