mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2026-09-03 20:52:56 -05:00
Used named variables in calls to print_attribute()
This commit is contained in:
+2
-2
@@ -310,11 +310,11 @@ class textui(backend.Backend):
|
||||
def print_attr(a):
|
||||
if attr in attr_map:
|
||||
self.print_attribute(
|
||||
attr_map[attr], entry[attr], indent, one_value_per_line
|
||||
attr_map[attr], entry[attr], indent=indent, one_value_per_line=one_value_per_line
|
||||
)
|
||||
else:
|
||||
self.print_attribute(
|
||||
attr, entry[attr], indent, one_value_per_line
|
||||
attr, entry[attr], indent=indent, one_value_per_line=one_value_per_line
|
||||
)
|
||||
|
||||
for attr in attr_order:
|
||||
|
||||
Reference in New Issue
Block a user