TrivialFix Remove white space between print and ()

Remove white space between print and ()

Change-Id: Ib80d54c7a375384eb51458afe9929e24b556cdda
This commit is contained in:
Luong Anh Tuan 2016-09-26 12:48:30 +07:00
parent 229824c2ca
commit 2a36c060bf
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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.")