diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-05-25 12:39:37 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-05-25 12:39:37 +0200 |
| commit | 553330ac3391dd3647dac961d7653179a11c55e3 (patch) | |
| tree | 4fc7b6b1a20deccf3a699d819791742423239703 | |
| parent | 49609837f2fd98508382886b30e7e3845dd3be1f (diff) | |
| download | python-apt-553330ac3391dd3647dac961d7653179a11c55e3.tar.gz | |
* brown paperback fix
| -rw-r--r-- | UpdateManager/MetaRelease.py | 3 | ||||
| -rw-r--r-- | debian/changelog | 9 |
2 files changed, 11 insertions, 1 deletions
diff --git a/UpdateManager/MetaRelease.py b/UpdateManager/MetaRelease.py index 681190c8..57a808ee 100644 --- a/UpdateManager/MetaRelease.py +++ b/UpdateManager/MetaRelease.py @@ -106,8 +106,9 @@ class MetaRelease(gobject.GObject): rawdate = index_tag.Section["Date"] date = time.mktime(rfc822.parsedate(rawdate)) supported = bool(index_tag.Section["Supported"]) + version = index_tag.Section["Version"] # add the information to a new date object - dist = Dist(name,date,supported) + dist = Dist(name, version, date,supported) if index_tag.Section.has_key("ReleaseNotes"): dist.releaseNotesURI = index_tag.Section["ReleaseNotes"] if index_tag.Section.has_key("UpgradeTool"): diff --git a/debian/changelog b/debian/changelog index b87daeb8..31679a80 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,18 @@ +update-manager (0.42.2ubuntu22) dapper; urgency=low + + * UpdateManager/UpdateManager.py: + - fix a 'brown paperback' bug when the Meta-Release file + checked (#46537) + + -- Michael Vogt <michael.vogt@ubuntu.com> Thu, 25 May 2006 12:30:42 +0200 + update-manager (0.42.2ubuntu21) dapper; urgency=low * UpdateManager/UpdateManager.py: - when a distribution release becomes available, display the version, not the codename (as per https://wiki.ubuntu.com/CodeNamesToVersionNumbers) + - fix a string that was not marked transltable -- Michael Vogt <michael.vogt@ubuntu.com> Wed, 24 May 2006 15:07:19 +0200 |
