diff --git a/jrnl/Journal.py b/jrnl/Journal.py index 35bdc395..0eb0ce5c 100644 --- a/jrnl/Journal.py +++ b/jrnl/Journal.py @@ -220,8 +220,8 @@ class Journal(object): entry for entry in self.entries if (not tags or tagged(entry.tags)) and (not starred or entry.starred) - and (not start_date or entry.date > start_date) - and (not end_date or entry.date < end_date) + and (not start_date or entry.date >= start_date) + and (not end_date or entry.date <= end_date) ] if short: if tags: