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
5 changes: 3 additions & 2 deletions site/zenodo_rdm/github/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,10 @@ def load_citation_metadata(self, data):
rdm_data = LegacySchema().load(legacy_data)
return rdm_data["metadata"]
except Exception as exc:
current_app.logger.exception(str(exc))
exc_str = str(exc)
current_app.logger.exception(exc_str)
raise CustomGitHubMetadataError(
file=citation_file_name, message="Citation metadata load failed"
file=citation_file_name, message=f"Citation metadata load failed: {exc_str}"
)


Expand Down