Remove white space between print () in cliutils.py and lintstack.py

There is a white space in line [print (*,
then we remove it.

Change-Id: I56ab60a40743f6f06493de601c0dff11761343b2
This commit is contained in:
gengchc2 2016-10-17 17:48:50 +08:00
parent b661e00af3
commit 92d37a127d
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -171,7 +171,7 @@ def validate(newmsg=None):
print json.dumps(i)
print "Consider regenerating the exception file if you will."
else:
print ("Please fix the errors above. If you believe they are false"
print("Please fix the errors above. If you believe they are false"
" positives, run 'tools/lintstack.py generate' to overwrite.")
sys.exit(1)