diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-05-21 21:13:05 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-05-21 21:13:05 +0200 |
commit | f4368fbfb9fd0de6f1d1625ffddee17b67926c89 (patch) | |
tree | 274c6fe882a2f22aa99d0c301fb90a882e379900 /portato/gui/utils.py | |
parent | 43509c27dd08219147e4bcdb0897ebb2f5ec22cc (diff) | |
parent | c24b4970e48771a32155cbc79060c76d218fdd85 (diff) | |
download | portato-f4368fbfb9fd0de6f1d1625ffddee17b67926c89.tar.gz portato-f4368fbfb9fd0de6f1d1625ffddee17b67926c89.tar.bz2 portato-f4368fbfb9fd0de6f1d1625ffddee17b67926c89.zip |
Merged from trunk
Diffstat (limited to '')
-rw-r--r-- | portato/gui/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/utils.py b/portato/gui/utils.py index 59210e1..0a2930b 100644 --- a/portato/gui/utils.py +++ b/portato/gui/utils.py @@ -204,7 +204,7 @@ class Database (object): else: ninst = [] for pkg in self._db[cat]: - if pkg[2]: + if pkg.inst: yield pkg else: ninst.append(pkg) |