mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Fixed #22842
This commit is contained in:
parent
dd57b89fcb
commit
7a1f8414c3
1 changed files with 1 additions and 1 deletions
|
@ -246,7 +246,7 @@ past:
|
|||
|
||||
def was_published_recently(self):
|
||||
now = timezone.now()
|
||||
return now - datetime.timedelta(days=1) <= self.pub_date < now
|
||||
return now - datetime.timedelta(days=1) <= self.pub_date <= now
|
||||
|
||||
and run the test again::
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue