summaryrefslogtreecommitdiff
path: root/docs/render_cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/render_cli.py')
-rw-r--r--docs/render_cli.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/docs/render_cli.py b/docs/render_cli.py
index 5e76611..76cecd1 100644
--- a/docs/render_cli.py
+++ b/docs/render_cli.py
@@ -180,15 +180,7 @@ class CliTable(SphinxDirective):
content = row.help[: row.help.index("(") - 1]
else:
content = row.help
- if name in ("--setuptools", "--pip", "--wheel"):
- text = row.help
- at = text.index(" bundle ")
- help_body = n.paragraph("")
- help_body += n.Text(text[: at + 1])
- help_body += n.literal(text="bundle")
- help_body += n.Text(text[at + 7 :])
- else:
- help_body = n.paragraph("", "", n.Text(content))
+ help_body = n.paragraph("", "", n.Text(content))
if row.choices is not None:
help_body += n.Text("; choice of: ")
first = True