From 4bc2b0d000c91862c779622e3193ebc6305087f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ozan=20=C3=87a=C4=9Flayan?= Date: Thu, 11 Feb 2010 20:05:51 +0000 Subject: [PATCH] The size of the list doesn't really matter at all BUG:FIXED:11818 --- pisi/operations/emerge.py | 4 ++-- pisi/operations/remove.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pisi/operations/emerge.py b/pisi/operations/emerge.py index 754123e7..8e50e90a 100644 --- a/pisi/operations/emerge.py +++ b/pisi/operations/emerge.py @@ -48,10 +48,10 @@ def emerge(A): order_build = A if order_inst: - ctx.ui.info(_("""The following minimal list of packages will be installed + ctx.ui.info(_("""The following list of packages will be installed from repository in the respective order to satisfy dependencies: """) + util.strlist(order_inst)) - ctx.ui.info(_("""The following minimal list of packages will be built and + ctx.ui.info(_("""The following list of packages will be built and installed in the respective order to satisfy dependencies: """) + util.strlist(order_build)) diff --git a/pisi/operations/remove.py b/pisi/operations/remove.py index e7356dd2..18136688 100644 --- a/pisi/operations/remove.py +++ b/pisi/operations/remove.py @@ -65,7 +65,7 @@ def remove(A, ignore_dep = False, ignore_safety = False): G_f = None order = A - ctx.ui.info(_("""The following minimal list of packages will be removed + ctx.ui.info(_("""The following list of packages will be removed in the respective order to satisfy dependencies: """) + util.strlist(order)) if len(order) > len(A_0):