Skip to content

Commit e328814

Browse files
committed
fix: Fix i18n string interpolation
1 parent 3e1aa09 commit e328814

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cove_ocds/views.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ def explore_ocds(request, pk):
5656
"msg": _(
5757
"The data you were hoping to explore no longer exists.\n\nThis is because all "
5858
"data supplied to this website is automatically deleted after %s days, and therefore "
59-
"the analysis of that data is no longer available.",
60-
getattr(settings, "DELETE_FILES_AFTER_DAYS", 7),
61-
),
59+
"the analysis of that data is no longer available."
60+
)
61+
% getattr(settings, "DELETE_FILES_AFTER_DAYS", 7),
6262
},
6363
status=404,
6464
)

0 commit comments

Comments
 (0)