diff options
| author | Sebastian Heinlein <sebastian.heinlein@web.de> | 2006-01-23 23:01:19 +0100 |
|---|---|---|
| committer | Sebastian Heinlein <sebastian.heinlein@web.de> | 2006-01-23 23:01:19 +0100 |
| commit | dfac943eddaebac9b9532acfd606fb3908e03bb8 (patch) | |
| tree | 317e7cfa0aae1d4e19c2c1ca1cd20fc2cfb16747 /UpdateManager/MetaRelease.py | |
| parent | 5d73a0332e39db8a773b1c3af989ed268c1f99e2 (diff) | |
| parent | 39915e9f6f204c2ded4d976621b6a1a37b6c3548 (diff) | |
| download | python-apt-dfac943eddaebac9b9532acfd606fb3908e03bb8.tar.gz | |
* Merged from Michael
* Set ellipsize to the status label and the progress bar
* More status messages
Diffstat (limited to 'UpdateManager/MetaRelease.py')
| -rw-r--r-- | UpdateManager/MetaRelease.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/UpdateManager/MetaRelease.py b/UpdateManager/MetaRelease.py index 451c48f0..c5d28212 100644 --- a/UpdateManager/MetaRelease.py +++ b/UpdateManager/MetaRelease.py @@ -100,7 +100,7 @@ class MetaRelease(gobject.GObject): #print name rawdate = index_tag.Section["Date"] date = time.mktime(rfc822.parsedate(rawdate)) - supported = index_tag.Section["Supported"] + supported = bool(index_tag.Section["Supported"]) # add the information to a new date object dist = Dist(name,date,supported) if index_tag.Section.has_key("ReleaseNotes"): |
