Skip to content

Commit edd7773

Browse files
committed
Merge pull request #307 from koodjo/patch-1
Bug in humanize.py
2 parents e309604 + 86a91bd commit edd7773

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)