Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions API/Routes/Case/CaseRoute.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,6 @@ def copy():
"status_code": "success"
}
return jsonify(response), 200
except(IOError):
raise IOError
except OSError:
return jsonify({'message': 'A filesystem error occurred.', 'status_code': 'error'}), 500

Expand Down
4 changes: 0 additions & 4 deletions API/Routes/Upload/UploadRoute.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,8 +399,6 @@ def uploadCaseUnchunked_old():
}

return jsonify(response), 200
except(IOError):
raise IOError
except OSError:
return jsonify({'message': 'A filesystem error occurred.', 'status_code': 'error'}), 500

Expand Down Expand Up @@ -649,7 +647,5 @@ def uploadXls():
}

return jsonify(response), 200
except(IOError):
raise IOError
except OSError:
return jsonify({'message': 'A filesystem error occurred.', 'status_code': 'error'}), 500
Loading