21 lines
706 B
Diff
21 lines
706 B
Diff
|
Subject: nodedev: Remove redundant error string (bz #1370418)
|
||
|
From: Cole Robinson crobinso@redhat.com Wed Mar 29 14:09:35 2017 -0400
|
||
|
Date: Wed Mar 29 14:09:35 2017 -0400:
|
||
|
Git: f341352cdadeadedab1579d1759ed1387aa28c75
|
||
|
|
||
|
|
||
|
diff --git a/virtinst/nodedev.py b/virtinst/nodedev.py
|
||
|
index 7796ca62..f82ba351 100644
|
||
|
--- a/virtinst/nodedev.py
|
||
|
+++ b/virtinst/nodedev.py
|
||
|
@@ -87,8 +87,7 @@ class NodeDevice(XMLBuilder):
|
||
|
except Exception, e:
|
||
|
logging.debug("Error looking up nodedev from idstring=%s",
|
||
|
idstring, exc_info=True)
|
||
|
- raise RuntimeError(_("Did not find node device matching '%s': %s" %
|
||
|
- (idstring, e)))
|
||
|
+ raise
|
||
|
|
||
|
|
||
|
@staticmethod
|