[open-ils-commits] r15307 - branches/rel_1_6/Open-ILS/src/extras (miker)

svn at svn.open-ils.org svn at svn.open-ils.org
Tue Jan 12 15:39:04 EST 2010


Author: miker
Date: 2010-01-12 15:38:59 -0500 (Tue, 12 Jan 2010)
New Revision: 15307

Modified:
   branches/rel_1_6/Open-ILS/src/extras/fast-extract
Log:
Patch from Galen Charlton fixing two typos in the fast-extract support script

Modified: branches/rel_1_6/Open-ILS/src/extras/fast-extract
===================================================================
--- branches/rel_1_6/Open-ILS/src/extras/fast-extract	2010-01-12 20:38:10 UTC (rev 15306)
+++ branches/rel_1_6/Open-ILS/src/extras/fast-extract	2010-01-12 20:38:59 UTC (rev 15307)
@@ -22,7 +22,7 @@
 
 GetOptions(
 	"after=s"	=> \$after,
-	"boostrap=s"	=> \$config,
+	"bootstrap=s"	=> \$config,
 	"delimiter=s"	=> \$delim,
 	"include-deleted"	=> \$deleted,
 );
@@ -66,6 +66,6 @@
 
 for my $id ( @$ids ) {
     my $row = $dbh->selectrow_hashref( $SQL, {}, $id );
-    print "$$row{deleted}$delim$$row{id}$delim$$row{tnc_source}$delim$$row{tcn_value}$delim$$row{marc}\n";
+    print "$$row{deleted}$delim$$row{id}$delim$$row{tcn_source}$delim$$row{tcn_value}$delim$$row{marc}\n";
 }
 



More information about the open-ils-commits mailing list