Remove blank space after print

Check nova code, remove blank space after print.

Change-Id: I0d7f1ebe6e83189a51bf714a2f03afd8a91d515c
This commit is contained in:
ChenZheng
2014-02-26 19:34:14 +08:00
parent 6dab229484
commit e051b82d49

View File

@@ -801,7 +801,7 @@ class ServiceCommands(object):
result = self._show_host_resources(context.get_admin_context(),
host=host)
except exception.NovaException as ex:
print (_("error: %s") % ex)
print(_("error: %s") % ex)
return 2
if not isinstance(result, dict):