Remove white space between print and ()

TrivialFix

Change-Id: Ieb883807f03d7e4448742cfd1d35decc3d40819f
This commit is contained in:
melissaml 2016-10-19 09:57:53 +08:00
parent c3cf67f5e5
commit 6f04f71754
1 changed files with 1 additions and 1 deletions

View File

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