From d84ab04c0e11789bce2493e221b6539b4d2402a4 Mon Sep 17 00:00:00 2001 From: Craig Vyvial Date: Thu, 20 Dec 2012 12:17:12 -0600 Subject: fixing the typo of the error message from nbd bug 1092640 Change-Id: I6743aea8cc96570a4a24e4a34d7b0b7f904c485d --- nova/virt/disk/mount/nbd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/virt/disk/mount/nbd.py b/nova/virt/disk/mount/nbd.py index 1b6cc0778..d45a1cbfa 100644 --- a/nova/virt/disk/mount/nbd.py +++ b/nova/virt/disk/mount/nbd.py @@ -57,7 +57,7 @@ class NbdMount(api.Mount): def _allocate_nbd(self): if not os.path.exists('/sys/block/nbd0'): - LOG.error(_('ndb module not loaded')) + LOG.error(_('nbd module not loaded')) self.error = _('nbd unavailable: module not loaded') return None -- cgit