Skip to content

Commit

Permalink
Port python script to 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darksylinc committed Feb 4, 2024
1 parent 9727b3b commit a2326ce
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Scripts/BuildScripts/generate_build_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ def getMercurialBranchName():
exitCode = process.wait()

if exitCode == 0:
output = output.decode()
branchName = output.replace( '\n', '' )
return branchName
else:
Expand All @@ -32,6 +33,7 @@ def getGitBranchName():
exitCode = process.wait()

if exitCode == 0:
output = output.decode()
branchName = output.replace( '\n', '' )
return branchName
else:
Expand Down

0 comments on commit a2326ce

Please sign in to comment.