From f379db545cf63f4ec854df748a1b7d256dc9bad4 Mon Sep 17 00:00:00 2001 From: Pádraig Brady Date: Wed, 16 Jan 2013 17:52:38 +0000 Subject: fix misspellings in logs, comments and tests Flagged with: https://github.com/lyda/misspell-check Run with: git ls-files | misspellings -f - Fixes bug: 1100083 Change-Id: Icf1f844fea8ad0a1101d1dc64b9a126608e9536e --- nova/compute/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/compute') diff --git a/nova/compute/manager.py b/nova/compute/manager.py index 03c54a363..6d799c1e3 100644 --- a/nova/compute/manager.py +++ b/nova/compute/manager.py @@ -2566,7 +2566,7 @@ class ComputeManager(manager.SchedulerDependentManager): mp) except Exception: # pylint: disable=W0702 with excutils.save_and_reraise_exception(): - msg = _("Faild to detach volume %(volume_id)s from %(mp)s") + msg = _("Failed to detach volume %(volume_id)s from %(mp)s") LOG.exception(msg % locals(), context=context, instance=instance) volume = self.volume_api.get(context, volume_id) -- cgit