much better
This commit is contained in:
parent
9b411fe54e
commit
8d7a474c69
@ -425,17 +425,17 @@ def upload_file():
|
|||||||
# check if the post request has the file part
|
# check if the post request has the file part
|
||||||
if 'file1' not in request.files:
|
if 'file1' not in request.files:
|
||||||
print('No file part')
|
print('No file part')
|
||||||
#return redirect(url_for('settings_get'))
|
return redirect(url_for('settings_get'))
|
||||||
file = request.files['file']
|
file = request.files['file1']
|
||||||
# If the user does not select a file, the browser submits an
|
# If the user does not select a file, the browser submits an
|
||||||
# empty file without a filename.
|
# empty file without a filename.
|
||||||
if file.filename == '':
|
if file.filename == '':
|
||||||
print('No selected file')
|
print('No selected file')
|
||||||
#return redirect(url_for('settings_get'))
|
return redirect(url_for('settings_get'))
|
||||||
if file and allowed_file(file.filename):
|
if file and allowed_file(file.filename):
|
||||||
filename = secure_filename(file.filename)
|
filename = secure_filename(file.filename)
|
||||||
file.save(os.path.join('/app/MsRewards-Reborn/user_data/', filename))
|
file.save(os.path.join('/app/MsRewards-Reborn/user_data/', filename))
|
||||||
#return redirect(url_for('settings_get'))
|
return redirect(url_for('settings_get'))
|
||||||
|
|
||||||
|
|
||||||
def maxi(dict):
|
def maxi(dict):
|
||||||
|
Loading…
Reference in New Issue
Block a user