Changes between Initial Version and Version 1 of Ticket #16470, comment 6


Ignore:
Timestamp:
Mar 30, 2018, 10:50:57 AM (6 years ago)
Author:
Claude Paroz

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #16470, comment 6

    initial v1  
    2121    p.showPage()
    2222    p.save()
    23     return FileResponse(buffer, as_attachment=True, filename="somefilename.pdf")
     23    return FileResponse(
     24        buffer, as_attachment=True, filename="somefilename.pdf", content_type='application/pdf'
     25    )
    2426}}}
Back to Top