diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-05-12 16:45:47 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-05-12 16:45:47 +0200 |
| commit | a005509d69547e0cbb336b6a27c254dcfcbc45ea (patch) | |
| tree | 752bc6d28b3b80b9a9bc479028dc295af944b69c /DistUpgrade | |
| parent | 423c92a20d0415a64aa7113d51ebec3ff924acac (diff) | |
| download | python-apt-a005509d69547e0cbb336b6a27c254dcfcbc45ea.tar.gz | |
* DistUpgrade/DistUpgradeControler.py:
- explain that the packages will be suggested for removal next
Diffstat (limited to 'DistUpgrade')
| -rw-r--r-- | DistUpgrade/DistUpgradeControler.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 4e47dfa0..3e970023 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -372,7 +372,7 @@ class DistUpgradeControler(object): open(demotions_file).readlines())) installed_demotions = filter(lambda pkg: pkg.isInstalled and pkg.name in demotions, self.cache) if len(installed_demotions) > 0: - self._view.information(_("Some software no longer supported"), + self._view.information(_("Some software no longer officially supported"), _("Some of your installed packages are " "no longer officially supported. See " "below for a list of installed packages " @@ -380,7 +380,10 @@ class DistUpgradeControler(object): "'officially " "supported' area (main) to the " "'community supported' area " - "(universe). "), + "(universe).\n\n " + "If you don't have 'universe' enabled " + "these packages will be suggested for " + "removal in the next step. "), "\n".join([pkg.name for pkg in installed_demotions])) # mark packages that are now obsolete (and where not obsolete |
