From a8b3bf55a7bed6924b44c94931d0fc2c71f6aae2 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 20 Jan 2008 18:01:42 +0100 Subject: [PATCH] Workaround for double spaces added by Zappa Mexico; patch from nematocyst. --- remoteglot.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/remoteglot.pl b/remoteglot.pl index f36a050..16416ba 100755 --- a/remoteglot.pl +++ b/remoteglot.pl @@ -215,6 +215,7 @@ sub handle_uci { chomp $line; $line =~ tr/\r//d; + $line =~ s/ / /g; # Sometimes needed for Zappa Mexico print UCILOG localtime() . " <= $line\n"; if ($line =~ /^info/) { my (@infos) = split / /, $line; -- 2.39.2