summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ipalib/cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py
index 78f2949d..4cf007d3 100644
--- a/ipalib/cli.py
+++ b/ipalib/cli.py
@@ -293,7 +293,7 @@ class textui(backend.Backend):
return
else:
if len(value) > 0:
- text = ', '.join(value)
+ text = ', '.join(str(v) for v in value)
else:
return
line_len = self.get_tty_width()