places parseCondition takes 2 arguments
This commit is contained in:
parent
1cabf3d924
commit
97913473a0
1 changed files with 2 additions and 2 deletions
|
@ -32,8 +32,8 @@ def parseCondition(condition, user):
|
||||||
else:
|
else:
|
||||||
exclude = False
|
exclude = False
|
||||||
if op == '-':
|
if op == '-':
|
||||||
q = parseCondition({'key': k, 'value': v[0], 'operator': '>='}) \
|
q = parseCondition({'key': k, 'value': v[0], 'operator': '>='}, user) \
|
||||||
& parseCondition({'key': k, 'value': v[1], 'operator': '<'})
|
& parseCondition({'key': k, 'value': v[1], 'operator': '<'}, user)
|
||||||
if exclude:
|
if exclude:
|
||||||
return ~q
|
return ~q
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue