Fix spelling mistake in the log message

Change-Id: I749308b94055eaca0503053daa87f4e89c873c56
This commit is contained in:
Livnat Peer 2014-07-16 13:57:03 +03:00
parent e693d5be17
commit f71d6bba05
1 changed files with 4 additions and 3 deletions

View 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