mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
'jrnl -from' times now match greater/less than or equal to start and end times
This commit is contained in:
parent
a9cef019ad
commit
b2aeb04b78
1 changed files with 2 additions and 2 deletions
|
@ -220,8 +220,8 @@ class Journal(object):
|
||||||
entry for entry in self.entries
|
entry for entry in self.entries
|
||||||
if (not tags or tagged(entry.tags))
|
if (not tags or tagged(entry.tags))
|
||||||
and (not starred or entry.starred)
|
and (not starred or entry.starred)
|
||||||
and (not start_date or entry.date > start_date)
|
and (not start_date or entry.date >= start_date)
|
||||||
and (not end_date or entry.date < end_date)
|
and (not end_date or entry.date <= end_date)
|
||||||
]
|
]
|
||||||
if short:
|
if short:
|
||||||
if tags:
|
if tags:
|
||||||
|
|
Loading…
Add table
Reference in a new issue