diff options
author | Michael Vogt <mvo@debian.org> | 2013-11-25 16:35:02 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-11-25 16:35:02 +0100 |
commit | 500347df3c544b1633215477d485d43103732743 (patch) | |
tree | 9ac3a07630c2e89496e681e9c0184f5d6bad3933 /apt-private/private-list.cc | |
parent | 61f954bff040809e7ab57b3adec2fe95339ffb94 (diff) |
do not show summary in "apt list"
Diffstat (limited to 'apt-private/private-list.cc')
-rw-r--r-- | apt-private/private-list.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-private/private-list.cc b/apt-private/private-list.cc index 8c61fcae8..6993cd797 100644 --- a/apt-private/private-list.cc +++ b/apt-private/private-list.cc @@ -149,7 +149,7 @@ bool List(CommandLine &Cmd) output_map.insert(std::make_pair<std::string, std::string>( V.ParentPkg().Name(), outs.str())); } else { - ListSingleVersion(CacheFile, records, V, outs); + ListSingleVersion(CacheFile, records, V, outs, false); output_map.insert(std::make_pair<std::string, std::string>( V.ParentPkg().Name(), outs.str())); } |