You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pyramid.renderers.RendererHelper render_view method injects dict(name=self.name,package=self.package) as renderer_info into system dict, which breaks code expecting renderer_info implementing IRendererInfo.
Resulution: inject self instead, as render() method does.
The text was updated successfully, but these errors were encountered:
The render_view method of pyramid.renderers.RendererHelper passed
an incorrect value into the renderer for renderer_info. It now passes
an instance of RendererHelper instead of a dictionary, which is
consistent with other usages. See https://github.com/Pylons/pyramid/issues#issue/106
pyramid.renderers.RendererHelper render_view method injects dict(name=self.name,package=self.package) as renderer_info into system dict, which breaks code expecting renderer_info implementing IRendererInfo.
Resulution: inject self instead, as render() method does.
The text was updated successfully, but these errors were encountered: