diff options
| author | Chris McDonough <chrism@plope.com> | 2011-12-10 01:16:55 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-12-10 01:16:55 -0500 |
| commit | d587b4b6974c2e4a9074f5bde42095227acfdd1c (patch) | |
| tree | a326c5ec290a9fd0eceb2b37b25b2e6acac5fd5f | |
| parent | 5f1cf3fbc519085b93fb16a230c0637050ce350d (diff) | |
| download | pyramid-d587b4b6974c2e4a9074f5bde42095227acfdd1c.tar.gz pyramid-d587b4b6974c2e4a9074f5bde42095227acfdd1c.tar.bz2 pyramid-d587b4b6974c2e4a9074f5bde42095227acfdd1c.zip | |
fix docs rendering
| -rw-r--r-- | pyramid/url.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pyramid/url.py b/pyramid/url.py index 3f934b364..afb602d3a 100644 --- a/pyramid/url.py +++ b/pyramid/url.py @@ -191,10 +191,10 @@ class URLMethodsMixin(object): Calling ``request.route_path('route')`` is the same as calling ``request.route_url('route', _app_url=request.script_name)``. - :meth:`pyramid.request.Request.route_path` is, in fact, implemented - in terms of `:meth:`pyramid.request.Request.route_url` in just this - way. As a result, any ``_app_url`` passed within the ``**kw`` values - to ``route_path`` will be ignored. + :meth:`pyramid.request.Request.route_path` is, in fact, + implemented in terms of :meth:`pyramid.request.Request.route_url` + in just this way. As a result, any ``_app_url`` passed within the + ``**kw`` values to ``route_path`` will be ignored. """ kw['_app_url'] = self.script_name return self.route_url(route_name, *elements, **kw) |
