Remove white space between print and ()

TrivialFix

Change-Id: Iea9913ec7934ec0879a724ad3f90d52fab8bca48
This commit is contained in:
yuyafei
2016-07-05 16:54:28 +08:00
parent d7d7648585
commit 1f73c958c4
2 changed files with 2 additions and 2 deletions

View File

@@ -268,5 +268,5 @@ def pretty_choice_list(l):
def exit(msg=''): def exit(msg=''):
if msg: if msg:
print (msg, file=sys.stderr) print(msg, file=sys.stderr)
sys.exit(1) sys.exit(1)

View File

@@ -43,7 +43,7 @@ def print_help(project, venv, root):
$ %(root)s/tools/with_venv.sh <your command> $ %(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): def main(argv):