diff options
| author | Michael Merickel <michael@merickel.org> | 2016-08-15 00:01:07 -0500 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2016-08-15 00:01:25 -0500 |
| commit | 24362ad1dd2a27337e465e4a21bd59efaebb8025 (patch) | |
| tree | 63e07108d972ff339ec59a4edecdf841d0bb173e | |
| parent | a69db3dc7c57f318308434905ee96e23d0c0d3df (diff) | |
| download | pyramid-24362ad1dd2a27337e465e4a21bd59efaebb8025.tar.gz pyramid-24362ad1dd2a27337e465e4a21bd59efaebb8025.tar.bz2 pyramid-24362ad1dd2a27337e465e4a21bd59efaebb8025.zip | |
fix alchemy scaffold help text
| -rw-r--r-- | pyramid/scaffolds/__init__.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pyramid/scaffolds/__init__.py b/pyramid/scaffolds/__init__.py index 62c3eeecc..841dc403e 100644 --- a/pyramid/scaffolds/__init__.py +++ b/pyramid/scaffolds/__init__.py @@ -4,7 +4,7 @@ from textwrap import dedent from pyramid.compat import native_ -from pyramid.scaffolds.template import Template # API +from pyramid.scaffolds.template import Template # API class PyramidTemplate(Template): """ @@ -60,5 +60,6 @@ class ZODBProjectTemplate(PyramidTemplate): class AlchemyProjectTemplate(PyramidTemplate): _template_dir = 'alchemy' - summary = 'Pyramid project using SQLAlchemy, SQLite, URL dispatch, and' - ' Chameleon' + summary = ( + 'Pyramid project using SQLAlchemy, SQLite, URL dispatch, and ' + 'Jinja2') |
