diff options
author | Livnat Peer <lpeer@redhat.com> | 2014-07-16 13:57:03 +0300 |
---|---|---|
committer | Livnat Peer <lpeer@redhat.com> | 2014-07-21 08:03:11 +0000 |
commit | f71d6bba050d043b183609a2de9ce980f54aa9cf (patch) | |
tree | 598f8548b3ef85fc329e0c5a6164ef3871be26a6 /neutron/cmd | |
parent | e693d5be177184264d1647919466fdc5a5ebd26d (diff) | |
download | neutron-f71d6bba050d043b183609a2de9ce980f54aa9cf.tar.gz |
Fix spelling mistake in the log message
Change-Id: I749308b94055eaca0503053daa87f4e89c873c56
Diffstat (limited to 'neutron/cmd')
-rw-r--r-- | neutron/cmd/sanity_check.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/neutron/cmd/sanity_check.py b/neutron/cmd/sanity_check.py index 1cc7088dc0..16e65f80be 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 |