fix: correct the -deleted to -DELETED to filter out tasks that were deleted
This commit is contained in:
parent
c792b80670
commit
96c81085ff
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ from datetime import date
|
||||||
from dateutil.relativedelta import relativedelta, MO
|
from dateutil.relativedelta import relativedelta, MO
|
||||||
import click
|
import click
|
||||||
|
|
||||||
__version__ = "0.2.3"
|
__version__ = "0.2.4"
|
||||||
|
|
||||||
|
|
||||||
@click.command()
|
@click.command()
|
||||||
|
@ -28,7 +28,7 @@ def main(uuid, header, sort):
|
||||||
f"end.after:{last_monday}",
|
f"end.after:{last_monday}",
|
||||||
"status_report:display",
|
"status_report:display",
|
||||||
"-home",
|
"-home",
|
||||||
"-deleted",
|
"-DELETED",
|
||||||
"export",
|
"export",
|
||||||
]
|
]
|
||||||
tasks = subprocess.run(
|
tasks = subprocess.run(
|
||||||
|
|
Loading…
Reference in a new issue