summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2016-08-15 00:01:07 -0500
committerMichael Merickel <michael@merickel.org>2016-08-15 00:01:25 -0500
commit24362ad1dd2a27337e465e4a21bd59efaebb8025 (patch)
tree63e07108d972ff339ec59a4edecdf841d0bb173e
parenta69db3dc7c57f318308434905ee96e23d0c0d3df (diff)
downloadpyramid-24362ad1dd2a27337e465e4a21bd59efaebb8025.tar.gz
pyramid-24362ad1dd2a27337e465e4a21bd59efaebb8025.tar.bz2
pyramid-24362ad1dd2a27337e465e4a21bd59efaebb8025.zip
fix alchemy scaffold help text
-rw-r--r--pyramid/scaffolds/__init__.py7
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')