From: Michał Górny Date: Tue, 30 Aug 2011 10:12:50 +0000 (+0200) Subject: repoman: discard STDERR output from CVS. X-Git-Tag: v2.2.0_alpha52~28 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=41f12443efdab544ace9f2c90df516360ebf9df1;p=portage.git repoman: discard STDERR output from CVS. Fixes: https://bugs.gentoo.org/show_bug.cgi?id=373669 --- diff --git a/pym/repoman/utilities.py b/pym/repoman/utilities.py index 232739ea0..380f8edb5 100644 --- a/pym/repoman/utilities.py +++ b/pym/repoman/utilities.py @@ -60,7 +60,7 @@ def detect_vcs_conflicts(options, vcs): if vcs == 'cvs': logging.info("Performing a " + output.green("cvs -n up") + \ " with a little magic grep to check for updates.") - retval = subprocess_getstatusoutput("cvs -n up 2>&1 | " + \ + retval = subprocess_getstatusoutput("cvs -n up 2>/dev/null | " + \ "egrep '^[^\?] .*' | " + \ "egrep -v '^. .*/digest-[^/]+|^cvs server: .* -- ignored$'") if vcs == 'svn':