commit f213aa93e32f2626e5aaf6c69119692e8f4994ec Author: Ondrej Lichtner olichtne@redhat.com Date: Fri Mar 6 12:28:45 2015 +0100
VirtUtils: fix log message
A log message was missing a space after the hardware address.
Signed-off-by: Ondrej Lichtner olichtne@redhat.com Signed-off-by: Jiri Pirko jiri@resnulli.us
lnst/Controller/VirtUtils.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- diff --git a/lnst/Controller/VirtUtils.py b/lnst/Controller/VirtUtils.py index 544de3b..25a6f39 100644 --- a/lnst/Controller/VirtUtils.py +++ b/lnst/Controller/VirtUtils.py @@ -94,7 +94,7 @@ class VirtDomainCtl: net_name, driver) self._domain.attachDevice(device_xml) - logging.debug("libvirt device with hwaddr '%s'" + logging.debug("libvirt device with hwaddr '%s' " "driver '%s' attached" % (hw_addr, driver)) self._created_interfaces[hw_addr] = device_xml return True
lnst-developers@lists.fedorahosted.org