File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -482,7 +482,7 @@ def logbook(**kwargs):
482
482
483
483
def canceled (** kwargs ):
484
484
"""
485
- Read cancelled tasks into dicts.
485
+ Read canceled tasks into dicts.
486
486
487
487
See `things.tasks` for details.
488
488
"""
Original file line number Diff line number Diff line change @@ -530,7 +530,7 @@ def get_daystats(self):
530
530
"+" || x || " days") as date,
531
531
CREATED.TasksCreated as created,
532
532
CLOSED.TasksClosed as completed,
533
- CANCELLED .TasksCanceled as canceled,
533
+ CANCELED .TasksCanceled as canceled,
534
534
TRASHED.TasksTrashed as trashed
535
535
FROM timeseries
536
536
LEFT JOIN
@@ -548,7 +548,7 @@ def get_daystats(self):
548
548
WHERE DAY NOT NULL
549
549
AND TASK.{ self .IS_CANCELED } AND TASK.{ self .IS_TODO }
550
550
GROUP BY DAY)
551
- AS CANCELLED ON CANCELLED .DAY = date
551
+ AS CANCELED ON CANCELED .DAY = date
552
552
LEFT JOIN
553
553
(SELECT COUNT(uuid) AS TasksTrashed,
554
554
date({ self .DATE_MOD } ,"unixepoch") AS DAY
You can’t perform that action at this time.
0 commit comments