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):