Merge "Use print function rather than print statement"

This commit is contained in:
Jenkins
2013-10-15 01:49:50 +00:00
committed by Gerrit Code Review
9 changed files with 54 additions and 40 deletions

View File

@@ -19,6 +19,8 @@
# License for the specific language governing permissions and limitations
# under the License.
from __future__ import print_function
import os
import sys
@@ -44,7 +46,7 @@ def print_help(venv, root):
Also, make test will automatically use the virtualenv.
"""
print help % (venv, root)
print(help % (venv, root))
def main(argv):