Skip to content

Commit b709b6f

Browse files
committed
taskwarrior: Sync subprojects
Fixes: #83
1 parent 937d83a commit b709b6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

syncall/taskwarrior/taskwarrior_side.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def create_tasks_filter() -> Callable[[TaskwarriorRawItem], bool]:
163163
fn = always_true
164164

165165
tags_fn = lambda task: self._tags.issubset(task.get("tags", []))
166-
project_fn = lambda task: task.get("project", "") == self._project
166+
project_fn = lambda task: task.get("project", "").startswith(self._project)
167167

168168
if self._only_modified_since:
169169
mod_since_date = assume_local_tz_if_none(self._only_modified_since)

0 commit comments

Comments
 (0)