Merge pull request #1956 from shakib609/master

Update allowed_file function in fileuploads.rst
This commit is contained in:
Armin Ronacher 2016-07-17 23:02:26 +05:00 committed by GitHub
commit 80b9453bdd

View file

@ -47,7 +47,7 @@ the file and redirects the user to the URL for the uploaded file::
def allowed_file(filename):
return '.' in filename and \
filename.rsplit('.', 1)[1] in ALLOWED_EXTENSIONS
filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS
@app.route('/', methods=['GET', 'POST'])
def upload_file():