[SimBot-commits] CVS: simbot/lib/SimBot Util.pm,1.2,1.3
Status: Abandoned
Brought to you by:
kstange
|
From: Kevin S. <ks...@us...> - 2005-11-10 13:23:39
|
Update of /cvsroot/simbot/simbot/lib/SimBot In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32409/lib/SimBot Modified Files: Util.pm Log Message: debug() calls are supposed to end with a newline! Index: Util.pm =================================================================== RCS file: /cvsroot/simbot/simbot/lib/SimBot/Util.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -p -r1.2 -r1.3 --- Util.pm 10 Nov 2005 13:20:31 -0000 1.2 +++ Util.pm 10 Nov 2005 13:23:25 -0000 1.3 @@ -502,7 +502,7 @@ sub timeago { my $hidemode = (defined $_[1] ? $_[1] : 0); if($_[0] > $now) { - &debug(DEBUG_WARN, "Trying to use timeago on a time in the future! Now is ${now}, Then is $_[0]"); + &debug(DEBUG_WARN, "Trying to use timeago on a time in the future! Now is ${now}, Then is $_[0]\n"); } if($seconds >= 60) { $minutes = int $seconds / 60; |