mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
baseldap: fix format string
Fixes missing type specification in format string. Reviewed-By: Stanislav Laznicka <slaznick@redhat.com>
This commit is contained in:
committed by
Tomas Krizek
parent
c39da523ad
commit
041982f073
@@ -2406,7 +2406,7 @@ class BaseLDAPModAttribute(LDAPQuery):
|
|||||||
|
|
||||||
|
|
||||||
class BaseLDAPAddAttribute(BaseLDAPModAttribute):
|
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):
|
def _update_attrs(self, update, entry_attrs):
|
||||||
for name, value in entry_attrs.items():
|
for name, value in entry_attrs.items():
|
||||||
@@ -2422,7 +2422,7 @@ class BaseLDAPAddAttribute(BaseLDAPModAttribute):
|
|||||||
|
|
||||||
|
|
||||||
class BaseLDAPRemoveAttribute(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):
|
def _update_attrs(self, update, entry_attrs):
|
||||||
for name, value in entry_attrs.items():
|
for name, value in entry_attrs.items():
|
||||||
|
|||||||
Reference in New Issue
Block a user