From d587b4b6974c2e4a9074f5bde42095227acfdd1c Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sat, 10 Dec 2011 01:16:55 -0500 Subject: fix docs rendering --- pyramid/url.py | 8 ++++---- 1 file 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) -- cgit v1.2.3