We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--help
1 parent 0c52892 commit 48fcf5cCopy full SHA for 48fcf5c
sphinx_autobuild/__main__.py
@@ -147,6 +147,10 @@ def _get_sphinx_build_parser():
147
sphinx_build_parser.description = None
148
sphinx_build_parser.epilog = None
149
sphinx_build_parser.prog = "sphinx-autobuild"
150
+ for action in sphinx_build_parser._actions:
151
+ if hasattr(action, "help"):
152
+ # Replace _TranslationProxy objects with strings
153
+ action.help = str(action.help)
154
for action in sphinx_build_parser._actions:
155
if hasattr(action, "version"):
156
# Fix the version
0 commit comments