We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48a763c commit d6e6afcCopy full SHA for d6e6afc
pgcommitfest/commitfest/templatetags/commitfest.py
@@ -180,9 +180,9 @@ def cf_duration_partials(d):
180
181
# Ignore microseconds.
182
since = delta.days * 24 * 60 * 60 + delta.seconds
183
- if since <= 0:
+ if since < 0:
184
# d is in the future compared to now, stop processing.
185
- return "in the future"
+ return None
186
187
# Get years and months.
188
total_months = (now.year - d.year) * 12 + (now.month - d.month)
0 commit comments