diff options
author | bionel <ionel.busuioc@gmail.com> | 2017-10-09 12:08:28 +0300 |
---|---|---|
committer | bionel <ionel.busuioc@gmail.com> | 2017-10-09 12:08:28 +0300 |
commit | 1da7c106968cdcf733811329c72da7dc99f4b659 (patch) | |
tree | ac3967888152ba47fac332c5fd9e652940598b6e /src/frontend | |
parent | a01ea30fe35b00552590c7746f649b80f76c3465 (diff) |
fix timestamp check
Diffstat (limited to 'src/frontend')
-rwxr-xr-x | src/frontend/gui/sisyphus-gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py index d64f431..027c90c 100755 --- a/src/frontend/gui/sisyphus-gui.py +++ b/src/frontend/gui/sisyphus-gui.py @@ -172,7 +172,7 @@ class Sisyphus(QtWidgets.QMainWindow): AND i.name = a.name AND i.slot = a.slot WHERE %s LIKE %s %s - AND a.timestamp <> i.timestamp + AND a.timestamp > i.timestamp ''' % (Sisyphus.SEARCHFIELD, Sisyphus.SEARCHTERM, FILTEROUT)), ]) with sqlite3.connect(sisyphus_database_path) as db: |