From 8a8d337d7d9fd2e8e15f8639ac70d02fc2003384 Mon Sep 17 00:00:00 2001 Message-Id: <8a8d337d7d9fd2e8e15f8639ac70d02fc2003384.1717210965.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 16 Aug 2000 00:57:18 +0000 Subject: [PATCH] Make message clearer. Organization: Straylight/Edgeware From: Ian Jackson --- bot.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.tcl b/bot.tcl index 54cda63..87d8545 100755 --- a/bot.tcl +++ b/bot.tcl @@ -421,7 +421,7 @@ def_ucmd summon { error $rv } if {[regexp {^problem (.*)} $rv dummy problem]} { - ucmdr {} "$target $problem." + ucmdr {} "The user `$target' $problem." } elseif {[regexp {^ok ([^ ]+) ([0-9]+)$} $rv dummy tty idlesince]} { set idletime [expr {$now - $idlesince}] set ls $now -- [mdw]