[SimBot-commits] CVS: simbot/tools create_zip_db.pl,1.3,1.4
Status: Abandoned
Brought to you by:
kstange
|
From: Pete P. <fou...@us...> - 2005-05-07 02:38:48
|
Update of /cvsroot/simbot/simbot/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12943/tools Modified Files: create_zip_db.pl Log Message: We now set $| so output doesn't wait for \n. Index: create_zip_db.pl =================================================================== RCS file: /cvsroot/simbot/simbot/tools/create_zip_db.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -p -r1.3 -r1.4 --- create_zip_db.pl 6 May 2005 19:11:46 -0000 1.3 +++ create_zip_db.pl 7 May 2005 02:38:32 -0000 1.4 @@ -37,6 +37,7 @@ use strict; use CAM::DBF; use DBI; +$| = 1; my %states = qw( 01 AL 02 AK 04 AZ 05 AR 06 CA 08 CO 09 CT 10 DE 11 DC @@ -116,4 +117,4 @@ EOT print " Done!\nCommitting..."; $sqlite_dbh->commit; -print " Done!\n"; \ No newline at end of file +print " Done!\n"; |