Mercurial > p > roundup > code
changeset 8105:e579aef218aa
fix: broken translatable error message template
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Wed, 07 Aug 2024 21:05:39 -0400 |
| parents | 0e01299414a8 |
| children | 47f0a4eba1b2 |
| files | roundup/admin.py |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup/admin.py Sun Jul 21 10:56:44 2024 -0400 +++ b/roundup/admin.py Wed Aug 07 21:05:39 2024 -0400 @@ -1840,7 +1840,7 @@ raise UsageError(e.args[0]) except IndexError: raise UsageError(_('no such %(classname)s node ' - '" % (nodeid)s"') % locals()) + '"%(nodeid)s"') % locals()) self.db_uncommitted = True return 0
