]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Fix spelling mistake in the log message
authorLivnat Peer <lpeer@redhat.com>
Wed, 16 Jul 2014 10:57:03 +0000 (13:57 +0300)
committerLivnat Peer <lpeer@redhat.com>
Mon, 21 Jul 2014 08:03:11 +0000 (08:03 +0000)
Change-Id: I749308b94055eaca0503053daa87f4e89c873c56

neutron/cmd/sanity_check.py

index 1cc7088dc0e8104332776bee0633ce197285145a..16e65f80be1de39cbeeb755e2a6fd2d5cbe72517 100644 (file)
@@ -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