Remove white space between print and ()

TrivialFix

Change-Id: I8575e507aa2e72bc7305099a88825530ff684078
This commit is contained in:
gecong1973
2016-10-11 10:12:39 +08:00
parent f31816cd92
commit 3ebbac601e

View File

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