Skip to content

Commit 92d37a1

Browse files
committed
Remove white space between print () in cliutils.py and lintstack.py
There is a white space in line [print (*, then we remove it. Change-Id: I56ab60a40743f6f06493de601c0dff11761343b2
1 parent b661e00 commit 92d37a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mistralclient/openstack/common/cliutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,5 +308,5 @@ def pretty_choice_list(l):
308308

309309
def exit(msg=''):
310310
if msg:
311-
print (msg, file=sys.stderr)
311+
print(msg, file=sys.stderr)
312312
sys.exit(1)

tools/lintstack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def validate(newmsg=None):
171171
print json.dumps(i)
172172
print "Consider regenerating the exception file if you will."
173173
else:
174-
print ("Please fix the errors above. If you believe they are false"
174+
print("Please fix the errors above. If you believe they are false"
175175
" positives, run 'tools/lintstack.py generate' to overwrite.")
176176
sys.exit(1)
177177

0 commit comments

Comments
 (0)