mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2026-07-29 15:55:47 -05:00
baseldap: fix format string
Fixes missing type specification in format string. Reviewed-By: Stanislav Laznicka <slaznick@redhat.com>
This commit is contained in:
@@ -2406,7 +2406,7 @@ class BaseLDAPModAttribute(LDAPQuery):
|
||||
|
||||
|
||||
class BaseLDAPAddAttribute(BaseLDAPModAttribute):
|
||||
msg_summary = _('added attribute value to entry %(value)')
|
||||
msg_summary = _('added attribute value to entry %(value)s')
|
||||
|
||||
def _update_attrs(self, update, entry_attrs):
|
||||
for name, value in entry_attrs.items():
|
||||
@@ -2422,7 +2422,7 @@ class BaseLDAPAddAttribute(BaseLDAPModAttribute):
|
||||
|
||||
|
||||
class BaseLDAPRemoveAttribute(BaseLDAPModAttribute):
|
||||
msg_summary = _('removed attribute values from entry %(value)')
|
||||
msg_summary = _('removed attribute values from entry %(value)s')
|
||||
|
||||
def _update_attrs(self, update, entry_attrs):
|
||||
for name, value in entry_attrs.items():
|
||||
|
||||
Reference in New Issue
Block a user