Changeset

59:46cb6e772e31

clix.roster: Add a separator between groups in the show sub command
author Kim Alvefur <zash@zash.se>
date Wed, 20 Apr 2011 02:00:16 +0200
parents 58:d5d9f7dffc1f
children 60:1537dabc5df8
files clix/roster.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/clix/roster.lua	Wed Apr 20 01:29:45 2011 +0200
+++ b/clix/roster.lua	Wed Apr 20 02:00:16 2011 +0200
@@ -86,7 +86,7 @@
 				end
 
 				for k,v in pairs(item) do
-					print(k,type(v) == "table" and table.concat(v) or v)
+					print(k,type(v) == "table" and table.concat(v, ", ") or v)
 				end
 			end;
 		}