Remove white space between print ()

Change-Id: I4ec58eea20c6afa89a702cc38c22cb5a3d231d54
This commit is contained in:
Nam Nguyen Hoai 2017-01-19 11:29:14 +07:00
parent fb749976fa
commit ad4f46031e
1 changed files with 1 additions and 1 deletions

View File

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