Merge "print statment has become a function in py3"

This commit is contained in:
Jenkins 2016-06-27 22:08:45 +00:00 committed by Gerrit Code Review
commit 66c02308e4
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ def print_help(project, venv, root):
$ %(root)s/tools/with_venv.sh <your command>
"""
print help % dict(project=project, venv=venv, root=root)
print(help % dict(project=project, venv=venv, root=root))
def main(argv):