Remove white space between print ()

Change-Id: I464707dd23f006d790c618ef44e37bf6e6de9a22
This commit is contained in:
Anh Tran 2017-01-17 10:30:45 +07:00
parent c423ca4470
commit a1f45a0206
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)