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
4 changes: 2 additions & 2 deletions gen3/tools/wrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ def run_command(self):
try:
os.environ["GEN3_TOKEN"] = self.auth.get_access_token()
except Gen3AuthError as e:
logger.error(f"ERROR getting Gen3 Access Token:", e)
logger.error(f"ERROR getting Gen3 Access Token: {e}")
raise
logger.info(
f"Running the command {self.command_args} with gen3 access token in environment variable"
)
try:
subprocess.run(cmd, stderr=subprocess.STDOUT, check=True)
except Exception as e:
logger.error(f"ERROR while running '{cmd}':", e)
logger.error(f"ERROR while running '{cmd}': {e}")
raise
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "gen3"
homepage = "https://gen3.org/"
version = "4.27.7"
version = "4.27.8"
description = "Gen3 CLI and Python SDK"
authors = ["Center for Translational Data Science at the University of Chicago <support@gen3.org>"]
license = "Apache-2.0"
Expand Down
Loading