diff options
Diffstat (limited to 'portato/gui/gui_helper.py')
-rw-r--r-- | portato/gui/gui_helper.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/portato/gui/gui_helper.py b/portato/gui/gui_helper.py index e1c9ce9..d1c53d0 100644 --- a/portato/gui/gui_helper.py +++ b/portato/gui/gui_helper.py @@ -201,9 +201,7 @@ class Database: # cycle through packages for p in packages: - list = p.split("/") - cat = list[0] - pkg = list[1] + cat, pkg = p.split("/") if not cat in self._db: self._db[cat] = [] self._db[cat].append((pkg, p in installed)) |