summaryrefslogtreecommitdiffstats
path: root/pym/repoman
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-11-23 05:47:57 +0000
committerZac Medico <zmedico@gentoo.org>2008-11-23 05:47:57 +0000
commitfa3d711519eb2ab6e4205ea351d54ef908171297 (patch)
tree105b8a7ef36b29196f8610217244dad901453a3f /pym/repoman
parent3e18c48e7a3895ed86020b6392be21334180683b (diff)
downloadportage-fa3d711519eb2ab6e4205ea351d54ef908171297.tar.gz
portage-fa3d711519eb2ab6e4205ea351d54ef908171297.tar.bz2
portage-fa3d711519eb2ab6e4205ea351d54ef908171297.zip
Bug #247548 - Remove 'last' and 'lfull' commands since nobody uses them.
Thanks to Alec Warner <antarus@g.o>. svn path=/main/trunk/; revision=12049
Diffstat (limited to 'pym/repoman')
-rw-r--r--pym/repoman/utilities.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/repoman/utilities.py b/pym/repoman/utilities.py
index cee52186e..6003deeac 100644
--- a/pym/repoman/utilities.py
+++ b/pym/repoman/utilities.py
@@ -211,7 +211,7 @@ def format_qa_output(formatter, stats, fails, dofull, dofail, options, qawarning
Returns:
None (modifies formatter)
"""
- full = options.mode in ("full", "lfull")
+ full = options.mode == 'full'
# we only want key value pairs where value > 0
for category, number in \
itertools.ifilter(lambda myitem: myitem[1] > 0, stats.iteritems()):