Separate gopher-ls entries with newlines instead of commas.

This commit is contained in:
david 2010-12-29 18:46:18 +00:00
parent 0658e53070
commit 80f7754d01

View file

@ -54,6 +54,6 @@ action = function( host, port )
end
line = buffer()
end
return stdnse.strjoin(", ", files)
return "\n" .. stdnse.strjoin("\n", files)
end