From f71d6bba050d043b183609a2de9ce980f54aa9cf Mon Sep 17 00:00:00 2001 From: Livnat Peer Date: Wed, 16 Jul 2014 13:57:03 +0300 Subject: [PATCH] Fix spelling mistake in the log message Change-Id: I749308b94055eaca0503053daa87f4e89c873c56 --- neutron/cmd/sanity_check.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/neutron/cmd/sanity_check.py b/neutron/cmd/sanity_check.py index 1cc7088dc..16e65f80b 100644 --- a/neutron/cmd/sanity_check.py +++ b/neutron/cmd/sanity_check.py @@ -17,6 +17,7 @@ import sys from neutron.cmd.sanity import checks from neutron.common import config +from neutron.openstack.common.gettextutils import _LE from neutron.openstack.common import log as logging from oslo.config import cfg @@ -54,9 +55,9 @@ def check_ovs_patch(): def check_nova_notify(): result = checks.nova_notify_supported() if not result: - LOG.error(_('Nova notifcations are enabled, but novaclient is not ' - 'installed. Either disable nova notifications or install ' - 'python-novaclient.')) + LOG.error(_LE('Nova notifications are enabled, but novaclient is not ' + 'installed. Either disable nova notifications or ' + 'install python-novaclient.')) return result -- 2.45.2