From 7ea6bb328bddb973f03eb8365b298229cc672770 Mon Sep 17 00:00:00 2001 From: Krytarik Raido Date: Thu, 22 Jul 2021 17:45:04 +0200 Subject: Don't capture stderr on apt-ftparchive, not used anyway. Closes: #990414 --- mini-dinstall | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mini-dinstall b/mini-dinstall index bae2d15..edb143f 100755 --- a/mini-dinstall +++ b/mini-dinstall @@ -1130,7 +1130,7 @@ class ArchiveDirIndexer(threading.Thread): newxzpackagesfilename = newpackagesfilename + '.xz' newpackagesfile = open(newpackagesfilename, 'wb') newxzpackagesfile = lzma.open(newxzpackagesfilename, 'w') - process = subprocess.Popen(cmdline, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=os.path.join(self._dir, '..')) + process = subprocess.Popen(cmdline, stdout=subprocess.PIPE, cwd=os.path.join(self._dir, '..')) buf = process.stdout.read(8192) while buf: newpackagesfile.write(buf) -- cgit v1.2.3