diff options
| author | Armando Migliaccio <armando.migliaccio@citrix.com> | 2010-12-07 14:26:38 +0000 |
|---|---|---|
| committer | Armando Migliaccio <armando.migliaccio@citrix.com> | 2010-12-07 14:26:38 +0000 |
| commit | 88777c09ad909c68da8d433800cae862e9bbff4a (patch) | |
| tree | ee37d31d2a13e88ba568d11ed8919afb088b71c2 | |
| parent | e9597d1370211de15ca96f1fa52fcbe3c9166a7e (diff) | |
and yet another pylint fix
| -rw-r--r-- | nova/virt/xenapi/vm_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/virt/xenapi/vm_utils.py b/nova/virt/xenapi/vm_utils.py index 2ee6737ab..039e72981 100644 --- a/nova/virt/xenapi/vm_utils.py +++ b/nova/virt/xenapi/vm_utils.py @@ -132,7 +132,7 @@ class VMHelper(): return vbd except XenAPI.Failure, exc: logging.warn(exc) - raise Exception('VBD not found in instance %s' % vm_ref) + raise StorageError('VBD not found in instance %s' % vm_ref) @classmethod @defer.inlineCallbacks |
