summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.txt3
-rwxr-xr-xpyramid/paster_templates/alchemy/+package+/__init__.py_tmpl2
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