removes warning
authortipaul <tipaul>
Thu, 6 Nov 2003 15:14:57 +0000 (15:14 +0000)
committertipaul <tipaul>
Thu, 6 Nov 2003 15:14:57 +0000 (15:14 +0000)
export/marc.pl

index 9b916bc..556db7a 100755 (executable)
@@ -24,9 +24,8 @@ if ($op eq "export") {
        my $sth=$dbh->prepare($query);
        $sth->execute;
        while (my ($bibid) = $sth->fetchrow) {
-               warn "getting : $bibid";
                my $record = MARCgetbiblio($dbh,$bibid);
-               warn $record->as_formatted();
+
                print $record->as_usmarc();
        }
 } else {