Skip to content

Commit

Permalink
convert path to string (#417)
Browse files Browse the repository at this point in the history
simple bug fix
  • Loading branch information
randytpierce authored Sep 13, 2024
2 parents 02fc145 + a949ece commit 9efcd94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vxingest/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ def run_ingest() -> None:
args.log_dir / f"all_logs-{runtime.strftime('%Y-%m-%dT%H:%M:%S%z')}.log",
)
# set profiling output
os.environ["PROFILE_OUTPUT_DIR"] = args.log_dir
os.environ["PROFILE_OUTPUT_DIR"] = str(args.log_dir)

logger.info("Getting credentials")
creds = get_credentials(args.credentials_file)
Expand Down

0 comments on commit 9efcd94

Please sign in to comment.