Remove white space between print and ()
TrivialFix Change-Id: Iea9913ec7934ec0879a724ad3f90d52fab8bca48
This commit is contained in:
@@ -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)
|
||||||
|
@@ -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):
|
||||||
|
Reference in New Issue
Block a user