summaryrefslogtreecommitdiff
path: root/UpdateManager
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-08-24 14:23:19 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2006-08-24 14:23:19 +0200
commit558f70b24693a1692be2ab79c4047af762f9e010 (patch)
tree6c1904424dc917faac8c0b55cfc6374181ca9f24 /UpdateManager
parent7f6bff5a191c2bb563198f20d1c2803f5054464b (diff)
downloadpython-apt-558f70b24693a1692be2ab79c4047af762f9e010.tar.gz
* properly added -proposed
Diffstat (limited to 'UpdateManager')
-rw-r--r--UpdateManager/UpdateManager.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py
index 38cffc39..3e958db0 100644
--- a/UpdateManager/UpdateManager.py
+++ b/UpdateManager/UpdateManager.py
@@ -219,8 +219,9 @@ class UpdateList:
" of Ubuntu"), 10),
("%s-updates" % dist, "Ubuntu", _("Recommended updates of "
"Ubuntu"), 9),
- ("%s-backports" % dist, "Ubuntu", _("Backports of Ubuntu"), 8),
- (dist, "Ubuntu", _("Updates of Ubuntu"), 7)]
+ ("%s-proposed" % dist, "Ubuntu", _("Proposed updates for Ubuntu"), 8),
+ ("%s-backports" % dist, "Ubuntu", _("Backports of Ubuntu"), 7),
+ (dist, "Ubuntu", _("Updates of Ubuntu"), 6)]
self.pkgs = {}
self.matcher = {}