Remove white space between print and ()

TrivialFix

Change-Id: I09c15898ec6e333a63cd4229fc2a37d0729623d6
This commit is contained in:
yuyafei
2016-07-05 16:47:29 +08:00
parent 92515d2566
commit 2e741f7df8

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)