Skip to content

Commit

Permalink
fix: add debugging log syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Veivel committed Jun 18, 2024
1 parent ab7294b commit ef69b43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy-stg/infisical.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
stdout=open(Path("deploy-stg") / ".env", "w"),
stderr=sys.stderr,
)
logger.info(f"Initial .env file size: {os.stat(Path("deploy-stg") / ".env").st_size}")
logger.info(f"Initial .env file size: {os.stat(Path('deploy-stg') / '.env').st_size}")

# Strip quotes if not quoted (Infisical exports for .env by default is quoted)
if not quoted:
Expand All @@ -86,4 +86,4 @@
for var in quoted_vars:
env_file.write(var + "\n")

logger.info(f"Final .env file size: {os.stat(Path("deploy-stg") / ".env").st_size}")
logger.info(f"Final .env file size: {os.stat(Path('deploy-stg') / '.env').st_size}")

0 comments on commit ef69b43

Please sign in to comment.