'Usage: datasette', not 'Usage: cli' - refs #336

This commit is contained in:
Simon Willison 2018-07-24 09:03:07 -07:00
commit bd1db56936
No known key found for this signature in database
GPG key ID: 17E2DEA2588B7F52
4 changed files with 4 additions and 3 deletions

View file

@ -18,6 +18,7 @@ def update_help_includes():
actual = "$ datasette {} --help\n\n{}".format(
name, result.output
)
actual = actual.replace('Usage: cli ', 'Usage: datasette ')
open(docs_path / filename, "w").write(actual)