You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug related to parsing of file Example_Book1.xlsx using ParseXLSX version 0.27. The .xlsx file was NOT created with Excel.
perl code used to generate the bug:
use strict; use warnings; use Spreadsheet::ParseXLSX;
my $UUIDName='Example_Book1.xlsx'; my $parser = Spreadsheet::ParseXLSX->new(); my $workbook = $parser->parse($UUIDName);
Result:
Can't call method "att" on an undefined value at /usr/share/perl5/vendor_perl/Spreadsheet/ParseXLSX.pm line 900.
Comments:
1.) Bug is related to the variable $type_base in sub _extract_files of /usr/share/perl5/vendor_perl/Spreadsheet/ParseXLSX.pm.
2.) Opening and saving the file with Excel resolves the problem.
The text was updated successfully, but these errors were encountered:
reported by @phvietan, fixes issue #10
also:
- added unit test for support of purl.oclc.org namespace ... see issue #7
- removed tidyness tests again as it fails on weaver'ed code
Bug related to parsing of file Example_Book1.xlsx using ParseXLSX version 0.27. The .xlsx file was NOT created with Excel.
perl code used to generate the bug:
use strict;
use warnings;
use Spreadsheet::ParseXLSX;
my $UUIDName='Example_Book1.xlsx';
my $parser = Spreadsheet::ParseXLSX->new();
my $workbook = $parser->parse($UUIDName);
Result:
Can't call method "att" on an undefined value at /usr/share/perl5/vendor_perl/Spreadsheet/ParseXLSX.pm line 900.
Comments:
1.) Bug is related to the variable
$type_base
in sub _extract_files of /usr/share/perl5/vendor_perl/Spreadsheet/ParseXLSX.pm.2.) Opening and saving the file with Excel resolves the problem.
The text was updated successfully, but these errors were encountered: