fix output

This commit is contained in:
Michael Grote 2023-04-13 14:30:29 +02:00
parent 49ef0d513d
commit fb78c61450

2
app.py
View file

@ -54,7 +54,7 @@ def delete_file(filename):
file_path = os.path.join(app.config['UPLOAD_DIRECTORY'], filename) file_path = os.path.join(app.config['UPLOAD_DIRECTORY'], filename)
if not os.path.isfile(file_path): if not os.path.isfile(file_path):
return jsonify({'error': 'File \'{}\' not found'}), 404 return jsonify({'error': 'File not found'}), 404
os.remove(file_path) os.remove(file_path)
return jsonify({'success': 'File \'{}\' successfully deleted'.format(filename)}) return jsonify({'success': 'File \'{}\' successfully deleted'.format(filename)})