Hi,
With pyramid-1.2 and older, I was serving files with the paste.fileapp.FileApp object.
Now that pyramid-1.3 has drop paste, what is the correct way to serve files?
I had a route like this one:
config.add_route("tool.download", "/tool/download/{label}.tgz")
Linked to a view that return the file like this:
# build the result path from request params
...
return self._request.get_response(FileApp(result_path))
Best regards,
Jonathan