Skip to content

Commit

Permalink
Allow building without python2 (flutter#8605)
Browse files Browse the repository at this point in the history
Almost all of the python build files in the flutter project work if
`python` is `python2` or `python3`. This is the only area where print is
incorrectly used (for `python3`).

Related issue: https://fuchsia-review.googlesource.com/c/fuchsia/+/272925
  • Loading branch information
josephlr authored and chinmaygarde committed Apr 18, 2019
1 parent 8b5a50c commit 7006870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/git_revision.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def main():
'HEAD',
])

print version.strip()
print (version.strip())

return 0

Expand Down

0 comments on commit 7006870

Please sign in to comment.