diff options
Diffstat (limited to 'ipalib')
-rw-r--r-- | ipalib/cli.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py index 69a3c28fe..dd20b3654 100644 --- a/ipalib/cli.py +++ b/ipalib/cli.py @@ -195,8 +195,8 @@ class textui(backend.Backend): Also see `textui.print_indented`. """ - for row in rows: - self.print_indented('%s = %r' % row, indent) + for (key, value) in rows: + self.print_indented('%s = %r' % (key, value), indent) def print_dashed(self, string, above=True, below=True): """ |