diff options
author | 2011-03-05 16:36:24 +0100 | |
---|---|---|
committer | 2011-03-05 15:40:48 +0000 | |
commit | 0c1ff159718540f4ffb4d0160daf078d48d478df (patch) | |
tree | 849f77d5bc6e89005488fff4957b5f4c1429c705 | |
parent | 78424cc592fe2149a41c2011e7c7fb32f0aeb399 (diff) | |
download | paludis-0c1ff159718540f4ffb4d0160daf078d48d478df.tar.gz paludis-0c1ff159718540f4ffb4d0160daf078d48d478df.tar.xz |
actually display installable differently
-rw-r--r-- | paludis/formatted_pretty_printer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paludis/formatted_pretty_printer.cc b/paludis/formatted_pretty_printer.cc index 16a8d4dc9..a8a511efe 100644 --- a/paludis/formatted_pretty_printer.cc +++ b/paludis/formatted_pretty_printer.cc @@ -70,7 +70,7 @@ FormattedPrettyPrinter::prettify(const PackageDepSpec & v) const auto ids((*_imp->env)[selection::SomeArbitraryVersion(generator::Matches(v, _imp->package_id, { }) | filter::SupportsAction<InstallAction>() | filter::NotMasked())]); if (! ids->empty()) - return format_installed(stringify(v)); + return format_installable(stringify(v)); } return format_masked(stringify(v)); |