summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbionel <ionel.busuioc@gmail.com>2017-09-23 22:34:27 +0300
committerbionel <ionel.busuioc@gmail.com>2017-09-23 22:34:27 +0300
commit428317940772b6d132b6333d72bbeeb9393dbb67 (patch)
tree16b15deab755df3e1657650704b611d309090899 /src
parent6dfc06d59325fd2ea6eb83369268f21adba1cd80 (diff)
remove downgradable filter, string comparing has to be refined
Diffstat (limited to 'src')
-rwxr-xr-xsrc/frontend/gui/sisyphus-gui.py3
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']