Skip to content

Commit 7006870

Browse files
josephlrchinmaygarde
authored andcommitted
Allow building without python2 (flutter#8605)
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
1 parent 8b5a50c commit 7006870

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/git_revision.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def main():
3434
'HEAD',
3535
])
3636

37-
print version.strip()
37+
print (version.strip())
3838

3939
return 0
4040

0 commit comments

Comments
 (0)