File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ Version 0.0.6
10
10
- Fix Bug that percentage done was not calculated correctly :issue: `5 `
11
11
- Syncing always set Task Type to Fixed Work but revert to original after sync :issue: `6 `
12
12
- Adding parameter ``--force-fixed-work `` that does not reset the Task Type after sync
13
+ - Do not sync work with summary task :issue: `1 `
13
14
14
15
Version 0.0.5
15
16
=============
Original file line number Diff line number Diff line change @@ -132,7 +132,8 @@ def update_task_with_issue_data(
132
132
task .notes = issue .description
133
133
if issue .due_date is not None :
134
134
task .deadline = issue .due_date
135
- task .work = int (issue .time_estimated )
135
+ if not task .has_children :
136
+ task .work = int (issue .time_estimated )
136
137
# Update duration in case it seems to be default
137
138
if task .duration == DEFAULT_DURATION and task .estimated :
138
139
if task .work > 0 :
You can’t perform that action at this time.
0 commit comments