diff options
| author | Chris McDonough <chrism@plope.com> | 2016-07-01 01:41:42 +0200 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2016-07-01 01:41:42 +0200 |
| commit | d350714a917b1a06dd4be6092e7b3da64771a4af (patch) | |
| tree | 80c26cdd036093d312c2017c85eb05f94f19692c /docs/narr/urldispatch.rst | |
| parent | 88d40ca6a84920d4c36b7a3be1cf3b46a6375f4e (diff) | |
| parent | bcba92d1b23745d736bdcbc9b799929de382db7b (diff) | |
| download | pyramid-d350714a917b1a06dd4be6092e7b3da64771a4af.tar.gz pyramid-d350714a917b1a06dd4be6092e7b3da64771a4af.tar.bz2 pyramid-d350714a917b1a06dd4be6092e7b3da64771a4af.zip | |
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'docs/narr/urldispatch.rst')
| -rw-r--r-- | docs/narr/urldispatch.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/narr/urldispatch.rst b/docs/narr/urldispatch.rst index 2472ace31..7d37c04df 100644 --- a/docs/narr/urldispatch.rst +++ b/docs/narr/urldispatch.rst @@ -557,7 +557,7 @@ Here is an example of a corresponding ``mypackage.views`` module: @view_config(route_name='idea') def idea_view(request): - return Response(request.matchdict['id']) + return Response(request.matchdict['idea']) @view_config(route_name='user') def user_view(request): |
