Skip to content

Commit 7ddfcfc

Browse files
committedJun 10, 2019
[processing] Fix exception in select by expression using not equal to operator
Fixes #30135
1 parent 8849cd9 commit 7ddfcfc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/algs/qgis/SelectByAttribute.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class SelectByAttribute(QgisAlgorithm):
4444
OUTPUT = 'OUTPUT'
4545

4646
OPERATORS = ['=',
47-
'',
47+
'<>',
4848
'>',
4949
'>=',
5050
'<',

0 commit comments

Comments
 (0)
Please sign in to comment.