Skip to content

Commit

Permalink
Dev: fix Python2 to Python3 migration
Browse files Browse the repository at this point in the history
  • Loading branch information
andriydruk committed Oct 28, 2023
1 parent 5747ef7 commit 6ce6225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/bin/swift-android
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def get_git_tags():

try:
output = check_output(["git", "--no-pager", "--git-dir", repo_dir, "tag", "--list"])
return output.strip().split("\n")
return output.decode().strip().split("\n")
except:
return []

Expand Down

0 comments on commit 6ce6225

Please sign in to comment.