diff --git a/src/rstconverter/app.py b/src/rstconverter/app.py index 0fcd6c0..53a847b 100644 --- a/src/rstconverter/app.py +++ b/src/rstconverter/app.py @@ -136,7 +136,7 @@ def post(self, input_format, output_format): output_filename = "{0}.{1}".format(input_basename, output_format) res = send_file(temp_outputfile.name, as_attachment=True, - attachment_filename=output_filename) + download_name=output_filename) return cors_response(res)