TrivialFix Remove white space between print and ()
Remove white space between print and () Change-Id: Ib80d54c7a375384eb51458afe9929e24b556cdda
This commit is contained in:
parent
229824c2ca
commit
2a36c060bf
@ -289,5 +289,5 @@ def pretty_choice_list(l):
|
||||
|
||||
def exit(msg=''):
|
||||
if msg:
|
||||
print (msg, file=sys.stderr)
|
||||
print(msg, file=sys.stderr)
|
||||
sys.exit(1)
|
||||
|
@ -184,7 +184,7 @@ def do_port_delete(cc, args):
|
||||
"""Delete a port."""
|
||||
for p in args.port:
|
||||
cc.port.delete(p)
|
||||
print ('Deleted port %s' % p)
|
||||
print('Deleted port %s' % p)
|
||||
|
||||
|
||||
@cliutils.arg('port', metavar='<port>', help="UUID of the port.")
|
||||
|
Loading…
Reference in New Issue
Block a user