diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-02-16 22:17:42 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-02-16 22:17:42 +0000 |
| commit | b1de627f08e4504a804a49cecacfdd306217f908 (patch) | |
| tree | 4b17aec2e4577705678d7494a0eac7b9c2aaa319 /CHANGES.txt | |
| parent | 42dd67d04c17a87bebd94bc7d8faca8ea1da9ac0 (diff) | |
| download | pyramid-b1de627f08e4504a804a49cecacfdd306217f908.tar.gz pyramid-b1de627f08e4504a804a49cecacfdd306217f908.tar.bz2 pyramid-b1de627f08e4504a804a49cecacfdd306217f908.zip | |
- Using ``model_url`` or ``model_path`` against a broken model graph
(one with models that had a non-root model with a ``__name__`` of
``None``) caused an inscrutable error to be thrown: ( if not
``_must_quote[cachekey].search(s): TypeError: expected string or
buffer``). Now URLs and paths generated against graphs that have
None names in intermediate nodes will replace the None with the
empty string, and, as a result, the error won't be raised. Of
course the URL or path will still be bogus.
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 7e83b1335..85b0a8054 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,15 @@ +Next release +============ + +- Using ``model_url`` or ``model_path`` against a broken model graph + (one with models that had a non-root model with a ``__name__`` of + ``None``) caused an inscrutable error to be thrown: ( if not + ``_must_quote[cachekey].search(s): TypeError: expected string or + buffer``). Now URLs and paths generated against graphs that have + None names in intermediate nodes will replace the None with the + empty string, and, as a result, the error won't be raised. Of + course the URL or path will still be bogus. + 0.6.9 (2009-02-16) ================== |
