diff --git a/README.md b/README.md index c971795..d5aa845 100644 --- a/README.md +++ b/README.md @@ -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 ` to minify or beautify the html content (`` being `minify` or `beautify`) ## Others diff --git a/jssg/management/commands/format-html.py b/jssg/management/commands/format-html.py index ea29168..28bbe71 100644 --- a/jssg/management/commands/format-html.py +++ b/jssg/management/commands/format-html.py @@ -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) :