[open-ils-commits] r15308 - branches/rel_1_6_0/Open-ILS/src/extras (miker)

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


Author: miker
Date: 2010-01-12 15:39:22 -0500 (Tue, 12 Jan 2010)
New Revision: 15308

Modified:
   branches/rel_1_6_0/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_0/Open-ILS/src/extras/fast-extract
===================================================================
--- branches/rel_1_6_0/Open-ILS/src/extras/fast-extract	2010-01-12 20:38:59 UTC (rev 15307)
+++ branches/rel_1_6_0/Open-ILS/src/extras/fast-extract	2010-01-12 20:39:22 UTC (rev 15308)
@@ -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