Added properly working imports with minions and status

This commit is contained in:
Finn 2019-07-08 18:12:35 +01:00
parent ff19c81074
commit 1a66933693
7 changed files with 49 additions and 59 deletions

View file

@ -29,7 +29,7 @@ has _csv_filehandle => (
my $self = shift;
my $fh;
if ( $self->has_csv_file ) {
open $fh, '<', \${$self->csv_file};
open $fh, '<', $self->csv_file;
} elsif ( $self->has_csv_string ) {
my $string = $self->csv_string;
open $fh, '<', \$string;