Skip to content

Commit

Permalink
make_translation.py: remove debugging print
Browse files Browse the repository at this point in the history
  • Loading branch information
ia committed Aug 3, 2023
1 parent 94d0fd7 commit af53c26
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Translations/make_translation.py
Original file line number Diff line number Diff line change
Expand Up @@ -1267,11 +1267,9 @@ def get_version_suffix(ver) -> str:
# Check env var from push.yml first:
# - if it's pull request then use vX.YY + C.ID for version line as in *C*I with proper tag instead of merge tag for detached tree
try:
print("====>>>> GITHUB_CI_PR_SHA:", os.environ["GITHUB_CI_PR_SHA"])
if os.environ["GITHUB_CI_PR_SHA"] != "":
return "C" + "." + os.environ["GITHUB_CI_PR_SHA"][:8].upper()
except KeyError:
print("====>>>> GITHUB_CI_PR_SHA:", "FALSE")
True
# - no github PR SHA ID, hence keep checking

Expand Down

0 comments on commit af53c26

Please sign in to comment.