[Reproducible-commits] [debbindiff] 03/03: debbindiff/comparators/cpio.py: appease pylint by not aliasing unused variables

Chris Lamb lamby at moszumanska.debian.org
Sat Feb 14 11:09:01 UTC 2015


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

lamby pushed a commit to branch master
in repository debbindiff.

commit 8967f9ea568dc030aad71e099b561cb8bb668b54
Author: Chris Lamb <lamby at debian.org>
Date:   Sat Feb 14 11:07:37 2015 +0000

    debbindiff/comparators/cpio.py: appease pylint by not aliasing unused variables
---
 debbindiff/comparators/cpio.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debbindiff/comparators/cpio.py b/debbindiff/comparators/cpio.py
index b84c8b6..bb67e38 100644
--- a/debbindiff/comparators/cpio.py
+++ b/debbindiff/comparators/cpio.py
@@ -37,7 +37,7 @@ def extract_cpio_archive(path, destdir):
             os.path.abspath(path)]
     logger.debug("extracting %s into %s", path, destdir)
     p = subprocess.Popen(cmd, shell=False, cwd=destdir)
-    stdout, stderr = p.communicate()
+    p.communicate()
     p.wait()
     if p.returncode != 0:
         logger.error('cpio exited with error code %d', p.returncode)

-- 
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