diff options
| author | Chris McDonough <chrism@plope.com> | 2010-11-17 00:33:42 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2010-11-17 00:33:42 -0500 |
| commit | 1e00f3a5f3a1ae01999f99d412a35ec46abc827c (patch) | |
| tree | 40b9044cfdb69d52414916d5be90600a9000b33c | |
| parent | 35c5a3a77ff2f17aa06ae25032d2b2baeb75e096 (diff) | |
| download | pyramid-1e00f3a5f3a1ae01999f99d412a35ec46abc827c.tar.gz pyramid-1e00f3a5f3a1ae01999f99d412a35ec46abc827c.tar.bz2 pyramid-1e00f3a5f3a1ae01999f99d412a35ec46abc827c.zip | |
- The ``pyramid_alchemy`` paster template had a typo, preventing an import
from working.
| -rw-r--r-- | CHANGES.txt | 3 | ||||
| -rwxr-xr-x | pyramid/paster_templates/alchemy/+package+/__init__.py_tmpl | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 2737e6893..c775bd422 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -11,6 +11,9 @@ Bug Fixes - Add deprecation warning for import of ``pyramid.zcml.zcml_configure`` and ``pyramid.zcml.file_configure``. +- The ``pyramid_alchemy`` paster template had a typo, preventing an import + from working. + Backwards Incompatibilities --------------------------- diff --git a/pyramid/paster_templates/alchemy/+package+/__init__.py_tmpl b/pyramid/paster_templates/alchemy/+package+/__init__.py_tmpl index a245bf141..748f58692 100755 --- a/pyramid/paster_templates/alchemy/+package+/__init__.py_tmpl +++ b/pyramid/paster_templates/alchemy/+package+/__init__.py_tmpl @@ -1,5 +1,5 @@ from pyramid.configuration import Configurator -from pramid.settings import asbool +from pyramid.settings import asbool from {{package}}.models import appmaker |
