diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/remote.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/remote.exp b/lib/remote.exp index 4de8900..fe3825d 100644 --- a/lib/remote.exp +++ b/lib/remote.exp @@ -637,8 +637,8 @@ proc standard_send { dest string } { } else { set shell_id [board_info $dest fileid] verbose "shell_id in standard_send is $shell_id" 3 - verbose "send -i [board_info $dest fileid] -- {$string}" 3 - if {[catch "send -i [board_info $dest fileid] -- {$string}" errorInfo]} { + verbose "send -i [board_info $dest fileid] -- $string" 3 + if {[catch "send -i [board_info $dest fileid] -- \$string" errorInfo]} { return "$errorInfo" } else { return "" |