diff options
author | 2016-02-27 01:01:03 -0500 | |
---|---|---|
committer | 2016-02-27 01:02:30 -0500 | |
commit | 5e5e7f4a88987255fe186801da89ccf2ae70c584 (patch) | |
tree | 03ac59f2b01251283e9e7bf73af7b273cacb4e11 | |
parent | ebuild/domain: allow line continuations in various /etc/portage files (diff) | |
download | pkgcore-5e5e7f4a88987255fe186801da89ccf2ae70c584.tar.gz pkgcore-5e5e7f4a88987255fe186801da89ccf2ae70c584.tar.bz2 pkgcore-5e5e7f4a88987255fe186801da89ccf2ae70c584.zip |
pmerge: don't output the repo list on resolution failures
It currently wasn't a helpful list anyway since it was basically repo
object output and not for regular consumption.
-rw-r--r-- | pkgcore/scripts/pmerge.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgcore/scripts/pmerge.py b/pkgcore/scripts/pmerge.py index 9d58d4252..a562c2b2c 100644 --- a/pkgcore/scripts/pmerge.py +++ b/pkgcore/scripts/pmerge.py @@ -669,10 +669,10 @@ def main(options, out, err): "repo %s: [ %s ]" % (r, ", ".join(str(x) for x in l))) match_count += len(l) if not match_count: - out.write("No matches found in %s" % (source_repos.repos,)) - out.write() + out.write("No matches found") if not options.ignore_failures: return 1 + out.write() resolver_inst.free_caches() |