Guest User

Untitled

a guest
Jan 22nd, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. dlfile = save_doc(newdoc,filetype,companyname,doctype,sowNum)
  2. filename = dlfile.replace('SOWoutput\\', '')
  3.  
  4. @after_this_request
  5. def cleanup(response):
  6. os.remove(dlfile)
  7. return response
  8.  
  9. return send_file(dlfile, attachment_filename=filename, as_attachment=True)
Add Comment
Please, Sign In to add comment