[Reproducible-commits] [debbindiff] 17/19: Swallow output when extracting files from squashfs

Jérémy Bobbio lunar at moszumanska.debian.org
Tue Mar 31 14:59:30 UTC 2015


This is an automated email from the git hooks/post-receive script.

lunar pushed a commit to branch pu/feed-diff
in repository debbindiff.

commit a6e728aad5c031e3670bfaa760dca7bab31f3445
Author: Jérémy Bobbio <lunar at debian.org>
Date:   Mon Mar 30 17:48:45 2015 +0200

    Swallow output when extracting files from squashfs
---
 debbindiff/comparators/squashfs.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debbindiff/comparators/squashfs.py b/debbindiff/comparators/squashfs.py
index 7c454bc..e93afe6 100644
--- a/debbindiff/comparators/squashfs.py
+++ b/debbindiff/comparators/squashfs.py
@@ -48,7 +48,7 @@ class SquashfsListing(Command):
 def extract_squashfs(path, destdir):
     cmd = ['unsquashfs', '-n', '-f', '-d', destdir, path]
     logger.debug("extracting %s into %s", path, destdir)
-    p = subprocess.Popen(cmd, shell=False)
+    p = subprocess.Popen(cmd, shell=False, stdout=subprocess.PIPE)
     p.communicate()
     p.wait()
     if p.returncode != 0:

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reproducible/debbindiff.git



More information about the Reproducible-commits mailing list