Skip to content

Commit

Permalink
Use built-in print() instead of print statement
Browse files Browse the repository at this point in the history
In python 3 print statement is not supported, so we should use
only print() functions.

Fixes bug 1226943

Change-Id: I05f042dc247ac117f6c2823d1326a88059875b79
  • Loading branch information
glongwave committed Sep 18, 2013
1 parent b17460e commit c3fd153
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/install_venv.py
Expand Up @@ -56,7 +56,7 @@ def print_help():
Also, make test will automatically use the virtualenv.
"""
print help
print(help)


def main(argv):
Expand Down

0 comments on commit c3fd153

Please sign in to comment.