Remove white space between print and ()

TrivialFix

Change-Id: Ibd777ccd779a1b70e3862430ebd7dbafc0b73ffb
This commit is contained in:
yuyafei 2016-07-05 15:58:04 +08:00
parent 421f625494
commit 8d33f6b97a

View File

@ -482,7 +482,7 @@ class ServiceCommands(object):
print(_("Host not found. Failed to remove %(service)s"
" on %(host)s.") %
{'service': binary, 'host': host_name})
print (u"%s" % e.args)
print(u"%s" % e.args)
return 2
print(_("Service %(service)s on host %(host)s removed.") %
{'service': binary, 'host': host_name})