Skip to content

Commit 86a91bd

Browse files
committed
Bug in humanize.py
1 parent e309604 commit 86a91bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

djcelery/humanize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def naturaldate(date, include_seconds=False):
6161
return ungettext(
6262
_('{minutes} minute ago'),
6363
_('{minutes} minutes ago'), minutes
64-
).format(minutes)
64+
).format(minutes=minutes)
6565
else:
6666
if include_seconds and seconds:
6767
return ungettext(

0 commit comments

Comments
 (0)