clix.roster: Add a separator between groups in the show sub command

Wed, 20 Apr 2011 02:00:16 +0200

author
Kim Alvefur <zash@zash.se>
date
Wed, 20 Apr 2011 02:00:16 +0200
changeset 59
46cb6e772e31
parent 58
d5d9f7dffc1f
child 60
1537dabc5df8

clix.roster: Add a separator between groups in the show sub command

clix/roster.lua file | annotate | diff | comparison | revisions
--- 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;
 		}

mercurial