Skip to content
Snippets Groups Projects
Commit 15e57341 authored by Scott Kitterman's avatar Scott Kitterman
Browse files

* debpyhton/pydist: Incorporate patch from Jonathan Lange to stop printing

    to stderr (LP: #812960)
parent 445f3b05
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,11 @@ python-defaults (2.7.2-5) UNRELEASED; urgency=low
packages)
* pyclean now accepts --package and private dir argument at the same time
-- Piotr Ożarowski <piotr@debian.org> Thu, 28 Jul 2011 00:23:50 +0200
[ Scott Kitterman ]
* debpyhton/pydist: Incorporate patch from Jonathan Lange to stop printing
to stderr (LP: #812960)
-- Scott Kitterman <scott@kitterman.com> Mon, 08 Aug 2011 10:28:50 -0400
python-defaults (2.7.2-4) experimental; urgency=low
......
......@@ -156,7 +156,7 @@ def guess_dependency(req, version=None):
log.debug("invoking dpkg -S %s", query)
process = Popen("/usr/bin/dpkg -S %s" % query, \
shell=True, stdout=PIPE)
shell=True, stdout=PIPE, stderr=PIPE)
stdout, stderr = process.communicate()
if process.returncode == 0:
result = set()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment