WebashalarForML commited on
Commit
5469609
·
verified ·
1 Parent(s): 7f3ac2c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -94,8 +94,12 @@ def upload_file():
94
  else:
95
  print("Folder not got it......................")
96
  file_path = os.path.join(app.config['UPLOAD_FOLDER'], filename)
97
- file.save(file_path)
98
- print("file save in folder")
 
 
 
 
99
 
100
  # Handle non-JSON files
101
  if not filename.lower().endswith('.json'):
 
94
  else:
95
  print("Folder not got it......................")
96
  file_path = os.path.join(app.config['UPLOAD_FOLDER'], filename)
97
+ try:
98
+ file.save(file_path)
99
+ flash('File uploaded successfully', 'success')
100
+ except Exception as e:
101
+ flash(f"Error saving file: {str(e)}", 'error')
102
+ return render_template('upload.html')
103
 
104
  # Handle non-JSON files
105
  if not filename.lower().endswith('.json'):