summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2010-12-13 23:28:59 -0500
committerChris McDonough <chrism@plope.com>2010-12-13 23:28:59 -0500
commita56564945ae07da87e5ccbca9c137095c250ced3 (patch)
tree5093c61d901beb5e448e7304a167a454fdd721b3 /CHANGES.txt
parentfee38663daccc0130d0c34dbc5a14e67bef2e183 (diff)
downloadpyramid-a56564945ae07da87e5ccbca9c137095c250ced3.tar.gz
pyramid-a56564945ae07da87e5ccbca9c137095c250ced3.tar.bz2
pyramid-a56564945ae07da87e5ccbca9c137095c250ced3.zip
- When creating a Configurator from within a ``paster pshell`` session, you
were required to pass a ``package`` argument although ``package`` is not actually required. If you didn't pass ``package``, you would receive an error something like ``KeyError: '__name__'`` emanating from the ``pyramid.path.caller_module`` function. This has now been fixed.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index dfa7bf7fc..be2bd2b5f 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -48,6 +48,12 @@ Dependencies
Bug Fixes
---------
+- When creating a Configurator from within a ``paster pshell`` session, you
+ were required to pass a ``package`` argument although ``package`` is not
+ actually required. If you didn't pass ``package``, you would receive an
+ error something like ``KeyError: '__name__'`` emanating from the
+ ``pyramid.path.caller_module`` function. This has now been fixed.
+
- The ``pyramid_routesalchemy`` paster template's unit tests failed
(``AssertionError: 'SomeProject' != 'someproject'``). This is fixed.