diff options
author | bionel <ionel.busuioc@gmail.com> | 2017-09-23 22:34:27 +0300 |
---|---|---|
committer | bionel <ionel.busuioc@gmail.com> | 2017-09-23 22:34:27 +0300 |
commit | 428317940772b6d132b6333d72bbeeb9393dbb67 (patch) | |
tree | 16b15deab755df3e1657650704b611d309090899 /src/frontend | |
parent | 6dfc06d59325fd2ea6eb83369268f21adba1cd80 (diff) |
remove downgradable filter, string comparing has to be refined
Diffstat (limited to 'src/frontend')
-rwxr-xr-x | src/frontend/gui/sisyphus-gui.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py index d27a171..691c072 100755 --- a/src/frontend/gui/sisyphus-gui.py +++ b/src/frontend/gui/sisyphus-gui.py @@ -27,8 +27,7 @@ class Sisyphus(QtWidgets.QMainWindow): ('All', ''), ('Available', 'AND iv IS NULL'), ('Installed', 'AND iv IS NOT NULL'), - ('Upgradable', 'AND iv < av'), - ('Downgradable', 'AND iv > av') + ('Upgradable', 'AND iv <> av') ]) Sisyphus.SEARCHFILTER = self.SEARCHFILTERS['All'] |