Skip to content

Commit

Permalink
Improve doc and commmand help
Browse files Browse the repository at this point in the history
  • Loading branch information
Clément committed Jul 24, 2024
1 parent 968252c commit e4d8818
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ For each command, the option `-h` give u some help.
`./manage.py make-widgets` to make a file that groups all jinja2 widgets macros for easier includes. It is automatically called by `runserver` and `distill-local` commands. \
See an example in `EXAMPLE.md`

`./manage.py format-html` to minify or beautify the html content
`./manage.py format-html <action>` to minify or beautify the html content (`<action>` being `minify` or `beautify`)

## Others

Expand Down
2 changes: 1 addition & 1 deletion jssg/management/commands/format-html.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def add_arguments(self, parser):
nargs='?',
type=str,
default=str(settings.DIST_DIR),
help="To specify a particular dist path"
help="To specify a particular dist path. Default is: " + str(settings.DIST_DIR)
)

def handle(self, *args, **options) :
Expand Down

0 comments on commit e4d8818

Please sign in to comment.