summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-04-04 18:40:28 +0000
committerZac Medico <zmedico@gentoo.org>2008-04-04 18:40:28 +0000
commit9f9ebcbc969660ef29c07bc10a9c5424d500f210 (patch)
tree35845f527ac21f5ac17ceb7558a2bfb5943b2067
parentDisplay the note referencing "masked packages" docs when there are (diff)
downloadportage-multirepo-9f9ebcbc969660ef29c07bc10a9c5424d500f210.tar.gz
portage-multirepo-9f9ebcbc969660ef29c07bc10a9c5424d500f210.tar.bz2
portage-multirepo-9f9ebcbc969660ef29c07bc10a9c5424d500f210.zip
Adjust newlines whitespace masked packages display.
svn path=/main/trunk/; revision=9706
-rw-r--r--pym/_emerge/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py
index 12a403e9..6d4c09b2 100644
--- a/pym/_emerge/__init__.py
+++ b/pym/_emerge/__init__.py
@@ -1158,7 +1158,7 @@ def show_masked_packages(masked_packages):
print "- "+cpv+" (masked by: "+", ".join(mreasons)+")"
if comment and comment not in shown_comments:
print filename+":"
- print comment,
+ print comment
shown_comments.add(comment)
portdb = root_config.trees["porttree"].dbapi
for l in missing_licenses:
@@ -2568,6 +2568,7 @@ class depgraph(object):
from textwrap import wrap
for line in wrap(msg, 75):
print line
+ print
show_mask_docs()
else:
print "\nemerge: there are no ebuilds to satisfy "+green(xinfo)+"."
@@ -5597,7 +5598,6 @@ def show_blocker_docs_link():
print
def show_mask_docs():
- print
print "For more information, see MASKED PACKAGES section in the emerge man page or "
print "refer to the Gentoo Handbook."