From: miker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Date: Tue, 12 Jan 2010 20:38:10 +0000 (+0000)
Subject: Patch from Galen Charlton fixing two typos in the fast-extract support script
X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=8ac7bccf81f067ba89b76587345930cb7e61f72e;p=contrib%2FConifer.git

Patch from Galen Charlton fixing two typos in the fast-extract support script

git-svn-id: svn://svn.open-ils.org/ILS/trunk@15306 dcc99617-32d9-48b4-a31d-7c20da2025e4
---

diff --git a/Open-ILS/src/extras/fast-extract b/Open-ILS/src/extras/fast-extract
index 3fcc29770e..d5fddf652e 100755
--- a/Open-ILS/src/extras/fast-extract
+++ b/Open-ILS/src/extras/fast-extract
@@ -22,7 +22,7 @@ my ($config, $delim, $after,$deleted) = ('SYSCONFDIR/opensrf_core.xml', ' | ');
 
 GetOptions(
 	"after=s"	=> \$after,
-	"boostrap=s"	=> \$config,
+	"bootstrap=s"	=> \$config,
 	"delimiter=s"	=> \$delim,
 	"include-deleted"	=> \$deleted,
 );
@@ -66,6 +66,6 @@ SQL
 
 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";
 }