Alon Bar-Lev has uploaded a new change for review. Change subject: core: hardware: fix debug message ......................................................................
core: hardware: fix debug message Change-Id: I41e80c81d8410c0626b0e28b072dd412a857ee9d Signed-off-by: Alon Bar-Lev <[email protected]> --- M ChangeLog M src/ovirt_host_deploy/hardware.py 2 files changed, 3 insertions(+), 2 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-host-deploy refs/changes/65/27065/1 diff --git a/ChangeLog b/ChangeLog index 24f7814..31d8372 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,7 @@ ????-??-?? - Version 1.2.1 * vdsmhooks: use short distribution name as suffix. + * hardware: fix typo in debug message. 2014-03-28 - Version 1.2.0 diff --git a/src/ovirt_host_deploy/hardware.py b/src/ovirt_host_deploy/hardware.py index 773bffc..1804a9e 100644 --- a/src/ovirt_host_deploy/hardware.py +++ b/src/ovirt_host_deploy/hardware.py @@ -195,11 +195,11 @@ try: if self._isVirtualizationEnabled(): self.logger.debug( - _('Hardware does not support virtualization') + _('Hardware supports virtualization') ) ret = self.DETECT_RESULT_SUPPORTED else: - self.logger.debug(_('Hardware supports virtualization')) + self.logger.debug(_('Hardware does not support virtualization')) ret = self.DETECT_RESULT_UNSUPPORTED except (AttributeError, IOError): self.logger.debug('Cannot detect virualization', exc_info=True) -- To view, visit http://gerrit.ovirt.org/27065 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I41e80c81d8410c0626b0e28b072dd412a857ee9d Gerrit-PatchSet: 1 Gerrit-Project: ovirt-host-deploy Gerrit-Branch: master Gerrit-Owner: Alon Bar-Lev <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
