Skip to content
Merged
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
3 changes: 2 additions & 1 deletion src/jade/app/fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,9 @@ def fetch_from_gitlab(
gl = gitlab.Gitlab(url=url, private_token=authorization_token, ssl_verify=False)
try:
gl.auth()
except gitlab.exceptions.GitlabAuthenticationError:
except gitlab.exceptions.GitlabAuthenticationError as e:
logging.error("Gitlab authentication failed")
logging.error(e)
return False

# select the correct project
Expand Down
2 changes: 1 addition & 1 deletion src/jade/run/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def write(self, output_folder: PathLike):
path to the output folder.
"""
# write the input to the output folder
self.input._write(output_folder)
self.input.write(output_folder)

def print_metadata(self, outpath: PathLike, metadata_file: PathLike):
"""Print the metadata of the run to the output folder.
Expand Down