Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/removeprint' into v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
k1o0 committed Oct 16, 2023
2 parents 87c2138 + 71e28fd commit f02e041
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion one/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""The Open Neurophysiology Environment (ONE) API."""
__version__ = '2.3.0'
__version__ = '2.3.1'
2 changes: 1 addition & 1 deletion one/remote/globus.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def get_local_endpoint_id():
assert id_file.exists(), msg.format(id_file)
local_id = id_file.read_text().strip()
assert isinstance(local_id, str), msg.format(id_file)
print(f'Found local endpoint ID in Globus Connect settings {local_id}')
_logger.info(f'Found local endpoint ID in Globus Connect settings {local_id}')
return UUID(local_id)


Expand Down

0 comments on commit f02e041

Please sign in to comment.