Skip to content

Commit

Permalink
i18n: update string formatting in ProviderNotSupportedError
Browse files Browse the repository at this point in the history
  • Loading branch information
Samk13 committed Feb 18, 2025
1 parent 28894f2 commit 8928a1a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion invenio_rdm_records/services/pids/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ def __init__(self, provider, scheme):
"""Initialise error."""
super().__init__(
_(
"Unknown PID provider %(provider)s for %(scheme)s", provider=provider, scheme=scheme
"Unknown PID provider %(provider)s for %(scheme)s",
provider=provider,
scheme=scheme,
)
)

0 comments on commit 8928a1a

Please sign in to comment.