558728377c
f5d709d9-lang-it-1.patch c66098f3-lang-it-2.patch 452a693e-lang-update.patch 6b5106ea-lang-it-ko-fix.patch 9c8ffe51-fix-multiple-warnings-1.patch cb182f7e-skip-authentication-only-for-VNC-with-listen-type-none.patch 0610cd6a-ensure-bool-value-used-for-set_sensitive-call.patch f341352c-remove-redundant-error-string.patch ff3b4dc5-dont-overwrite-install-bootorder.patch 2099a194-reset-guest-domain-to-none-on-domain-creation-error.patch 7aee124d-fix-multiple-warnings-2.patch - Check for SLE15 and Leap 15 bsc#1035779 virtman-default-guest-from-host-os.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=348
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
|