forked from orbit-oss/flask
Fixed a broekn testcase
This commit is contained in:
parent
7f35fc2935
commit
9ae8487330
1 changed files with 1 additions and 1 deletions
|
|
@ -516,7 +516,7 @@ def send_file(filename_or_fp, mimetype=None, as_attachment=False,
|
|||
if file is None:
|
||||
file = open(filename, 'rb')
|
||||
mtime = os.path.getmtime(filename)
|
||||
headers['Content-Length'] = os.path.getsize(filename)
|
||||
headers['Content-Length'] = os.path.getsize(filename)
|
||||
data = wrap_file(request.environ, file)
|
||||
|
||||
rv = current_app.response_class(data, mimetype=mimetype, headers=headers,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue