Remove white space between print ()

There was a white space between print and ()

Change-Id: Ieaf94259b7a53ce70c6e5f8c9e1e025ffccc64d9
This commit is contained in:
Anusree 2017-01-20 03:19:16 +05:30
parent 93bb7c6798
commit cb688019c6
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)