5a068a54d1
- urlfetcher: Silence xorisso stderr output (rhbz#1973236) Related: rhbz#1973236
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
From 900413f1fccc3a4f64f66066d851e3a03b821156 Mon Sep 17 00:00:00 2001
|
|
From: Cole Robinson <crobinso@redhat.com>
|
|
Date: Fri, 30 Jul 2021 10:45:07 -0400
|
|
Subject: [PATCH] urlfetcher: Silence xorisso stderr output
|
|
|
|
Signed-off-by: Cole Robinson <crobinso@redhat.com>
|
|
(cherry picked from commit 8754a59d9228caacf43bcb1af6ad307da7217b09)
|
|
|
|
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1973236
|
|
|
|
Signed-off-by: Jonathon Jongsma <jjongsma@redhat.com>
|
|
---
|
|
virtinst/install/urlfetcher.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/virtinst/install/urlfetcher.py b/virtinst/install/urlfetcher.py
|
|
index 838a206a..67a68002 100644
|
|
--- a/virtinst/install/urlfetcher.py
|
|
+++ b/virtinst/install/urlfetcher.py
|
|
@@ -44,7 +44,7 @@ class _XorrisoReader():
|
|
cmd = ["xorriso", "-osirrox", "on", "-indev", self._location,
|
|
"-extract", url, tmp.name]
|
|
log.debug("Extracting iso file: %s", cmd)
|
|
- subprocess.check_output(cmd)
|
|
+ subprocess.check_output(cmd, stderr=subprocess.DEVNULL)
|
|
return open(tmp.name, "rb").read()
|
|
|
|
def hasFile(self, url):
|
|
--
|
|
2.31.1
|
|
|