# HG changeset patch # User Ludovic Chabant # Date 1438186434 25200 # Node ID 03c3a77fda60d28df6d5f3592ed4468b4869bdea # Parent 5bbeb11fe8d996cb182b7f96c91771310e694d1c prepare: More help about scaffolding. diff -r 5bbeb11fe8d9 -r 03c3a77fda60 piecrust/commands/builtin/scaffolding.py --- a/piecrust/commands/builtin/scaffolding.py Wed Jul 29 09:10:28 2015 -0700 +++ b/piecrust/commands/builtin/scaffolding.py Wed Jul 29 09:13:54 2015 -0700 @@ -53,7 +53,8 @@ src.setupPrepareParser(p, app) p.add_argument('-t', '--template', default='default', help="The template to use, which will change the " - "generated text and header.") + "generated text and header. Run `chef help " + "scaffolding` for more information.") p.set_defaults(source=src) def run(self, ctx): @@ -192,6 +193,9 @@ "\n\n" + textwrap.fill("The following templates are available:") + "\n\n" + - help_list) + help_list + + "\n" + + "You can add user-defined templates by creating pages in a " + "`scaffold/pages` sub-directory in your website.") return help_txt