Skip to content

Commit

Permalink
Merge branch 'master' into dn-feat/add-commit-sha-to-events
Browse files Browse the repository at this point in the history
  • Loading branch information
daibhin committed Feb 14, 2024
2 parents 1254531 + 8d467d2 commit dfffa8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posthog/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Docker containers should have a commit.txt file in the base directory with the git
# commit hash used to generate them.
with open("commit.txt") as f:
_git_commit_baked_in = f.read()
_git_commit_baked_in = f.read().strip()
except FileNotFoundError:
pass

Expand Down

0 comments on commit dfffa8f

Please sign in to comment.