Skip to content
Open
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
4 changes: 2 additions & 2 deletions geonode/upload/handlers/xlsx/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ def pre_processing(self, files, execution_id, **kwargs):
self._convert_to_csv(headers, rows_gen, output_file)

except Exception as e:
logger.exception("XLSX Pre-processing failed")
raise InvalidInputFileException(detail=f"Failed to securely parse Excel: {str(e)}")
logger.exception(f"XLSX Pre-processing failed: {str(e)}")
raise InvalidInputFileException(detail="Failed to securely parse Excel.")

# update the file path in the payload
_data["files"]["base_file"] = output_file
Expand Down
Loading