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 3e1aa09 commit e328814Copy full SHA for e328814
cove_ocds/views.py
@@ -56,9 +56,9 @@ def explore_ocds(request, pk):
56
"msg": _(
57
"The data you were hoping to explore no longer exists.\n\nThis is because all "
58
"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
- ),
+ "the analysis of that data is no longer available."
+ )
+ % getattr(settings, "DELETE_FILES_AFTER_DAYS", 7),
62
},
63
status=404,
64
)
0 commit comments