Skip to content
Snippets Groups Projects
Commit d60018c3 authored by Leo Gordon's avatar Leo Gordon
Browse files

still seems to be a more general approach, so let us stick with it

parent 82045252
No related branches found
No related tags found
No related merge requests found
......@@ -211,7 +211,7 @@ sub _make_list_from_open {
while(my $line = <FILE>) {
chomp $line;
push @list, defined($delimiter) ? [ split(/\Q$delimiter\E/, $line) ] : $line;
push @list, defined($delimiter) ? [ split(/$delimiter/, $line) ] : $line;
}
close FILE;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment