Changeset

136:2309402dd3cb

clix.raw: Fix sending arguments from the command line
author Kim Alvefur <zash@zash.se>
date Sat, 14 Nov 2020 15:39:16 +0100
parents 135:c8cad3c42f3d
children 137:7130d5ec115c
files clix/raw.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/clix/raw.lua	Sat Nov 14 15:36:16 2020 +0100
+++ b/clix/raw.lua	Sat Nov 14 15:39:16 2020 +0100
@@ -110,7 +110,7 @@
 			if send_xml then
 				conn:send(send_xml);
 			else
-				conn:send(table.concat(arg, " "));
+				conn:send(table.concat(args, " "));
 			end
 			conn:close();
 		end