[open-ils-commits] r7862 - trunk/Open-ILS/src/perlmods/OpenILS/WWW
svn at svn.open-ils.org
svn at svn.open-ils.org
Wed Oct 3 14:49:15 EDT 2007
Author: miker
Date: 2007-10-03 14:38:26 -0400 (Wed, 03 Oct 2007)
New Revision: 7862
Modified:
trunk/Open-ILS/src/perlmods/OpenILS/WWW/Exporter.pm
Log:
debugging
Modified: trunk/Open-ILS/src/perlmods/OpenILS/WWW/Exporter.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/WWW/Exporter.pm 2007-10-03 18:33:40 UTC (rev 7861)
+++ trunk/Open-ILS/src/perlmods/OpenILS/WWW/Exporter.pm 2007-10-03 18:38:26 UTC (rev 7862)
@@ -66,12 +66,13 @@
while (<$file>) {
chomp;
+ warn "LINE $_";
$csv->parse($_);
my @data = $csv->fields;
my $id = $data[$col];
+ warn "ID $id";
$id =~ s/\D+//o;
next unless ($id);
- warn "ID $id";
push @records, $id;
}
}
More information about the open-ils-commits
mailing list