Skip to content

Commit

Permalink
Fix function name
Browse files Browse the repository at this point in the history
  • Loading branch information
guyer committed Sep 5, 2023
1 parent 8358b73 commit c0953ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ntd2d/entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ def main():
main()
except (subprocess.CalledProcessError, subprocess.TimeoutExpired) as e:
gha_utils.echo(f"what is happening?", use_subprocess=True)
gha_utils.info(f"stdout: {e.stdout.decode('utf-8')[:1000]}", use_subprocess=True)
# gha_utils.info(f"stderr: {e.stderr.decode('utf-8')[:1000]}", use_subprocess=True)
gha_utils.echo(f"stdout: {e.stdout.decode('utf-8')[:1000]}", use_subprocess=True)
# gha_utils.echo(f"stderr: {e.stderr.decode('utf-8')[:1000]}", use_subprocess=True)
sys.exit(1)
except Exception as e:
gha_utils.error("".join(traceback.format_exception(e)), use_subprocess=True)
Expand Down

0 comments on commit c0953ca

Please sign in to comment.