You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let's say I have a task folder in ~/_sample_data.
The output of unset TASKRC; task rc.data.location=~/_sample_data is (removing the "configuration override" notes):
ID Age Tag Description Urg
2 5min habit another task 0.8
1 5min sample task 0
2 tasks
I then tried to use it this way:
fromtasklibimportTaskWarriorimportosdelos.environ["TASKRC"] # just to be sure it isn't my config's faulttw=TaskWarrior(f"{os.environ['HOME']}/_sample_data")
print(tw.tasks.filter("status:pending")) # yields the two tasksprint(tw.tasks.filter("status:pending +habit")) # yields no task (was supposed to yield one)print(tw.tasks.filter("+habit")) # yields one task, as expectedprint(tw.tasks.filter(status="pending", tag="habit")) # yields one task ~ this one works fine as well
The shown output is then:
[sample task, another task]
[]
[another task]
[another task]
But what was expected:
[sample task, another task]
[another task]
[another task]
[another task]
It seems like only raw filters that have more than one condition are affected by this.
The text was updated successfully, but these errors were encountered:
I've went and tried this command out and noticed that sending the whole "status:pending +habit" as a single argument doesn't seem to work on taskwarrior, instead requiring each condition to be a whole different argument or the entire single argument to be wrapped by parenthesis.
So: task status:pending +habit and task "(status:pending +habit)" both work but task "status:pending +habit" doesn't.
I'm not sure how this should be tackled on tasklib (maybe it has been tackled before but something went wrong). Since task "(status:pending +habit)" works fine, maybe we could just add parenthesis if the query has parenthesis? I'm not sure if that solves the problem completely.
Let's say I have a task folder in
~/_sample_data
.The output of
unset TASKRC; task rc.data.location=~/_sample_data
is (removing the "configuration override" notes):I then tried to use it this way:
The shown output is then:
But what was expected:
It seems like only raw filters that have more than one condition are affected by this.
The text was updated successfully, but these errors were encountered: