summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-08-18 16:49:45 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2006-08-18 16:49:45 +0200
commit37827c0f97d0711820443325d3d1c65b755cdfb4 (patch)
tree9fa7baac789d622d79b702219b98ad1ce6d2e38c
parentd08caea3196550e700db9a1d83fcaa3a8ad35b2d (diff)
downloadpython-apt-37827c0f97d0711820443325d3d1c65b755cdfb4.tar.gz
* DistUpgrade/DistUpgradeControler.py:
- sort the demotions list * DistUpgrade/Changelog: - updated
-rw-r--r--DistUpgrade/Changelog5
-rw-r--r--DistUpgrade/DistUpgradeControler.py3
2 files changed, 7 insertions, 1 deletions
diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog
index 25d20acb..195e45e1 100644
--- a/DistUpgrade/Changelog
+++ b/DistUpgrade/Changelog
@@ -1,3 +1,8 @@
+2006-08-18:
+ - sort the demoted software list
+2006-07-31:
+ - updated to edgy
+ - uploadedd
2006-05-31:
- fix bug in the free space calculation (#47092)
- updated ReleaseAnnouncement
diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py
index a14ca528..3a775099 100644
--- a/DistUpgrade/DistUpgradeControler.py
+++ b/DistUpgrade/DistUpgradeControler.py
@@ -395,7 +395,8 @@ 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:
- demoted = [pkg.name for pkg in installed_demotions]
+ demoted = [pkg.name for pkg in installed_demotions]
+ demoted.sort()
logging.debug("demoted: '%s'" % " ".join(demoted))
self._view.information(_("Some software no longer officially "
"supported"),