From a8016c4258f1e4ca810a00070fe81ee30daf493d Mon Sep 17 00:00:00 2001 From: Ben Ostrowsky Date: Mon, 26 Oct 2009 18:05:56 +0000 Subject: [PATCH 1/1] Unicorn TSV-maker can now handle bill.data and charge.data too. git-svn-id: svn://nox.esilibrary.com/migration-tools@621 eee7cc8d-164e-4af6-8e1b-092a69004917 --- unicorn/unicorn_patrons_to_tsv.pl | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/unicorn/unicorn_patrons_to_tsv.pl b/unicorn/unicorn_patrons_to_tsv.pl index 18c5a9e..6960d49 100755 --- a/unicorn/unicorn_patrons_to_tsv.pl +++ b/unicorn/unicorn_patrons_to_tsv.pl @@ -25,6 +25,11 @@ while (<>) { next; } + # Is this a FORM= line (which can be ignored)? + if ( /^FORM=/ ) { + next; + } + # If this isn't the start of the new record, it's a new line in the present record. $line++; -- 1.7.2.5