diff --git a/gen3/tools/wrap.py b/gen3/tools/wrap.py index 90aa18a5..f45cfb6b 100644 --- a/gen3/tools/wrap.py +++ b/gen3/tools/wrap.py @@ -24,7 +24,7 @@ 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" @@ -32,5 +32,5 @@ def run_command(self): 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 diff --git a/pyproject.toml b/pyproject.toml index 8b314818..8d82e591 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "Apache-2.0"