summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-09-16 23:21:24 -0400
committerJesse Luehrs <doy@tozt.net>2013-09-16 23:24:04 -0400
commit184bd929cdd7059c5387c2e753ab63731020d537 (patch)
tree1ce04ee4a25399100269cdd4350df39a299dd9e5 /lib
parenta5b756bcaf85dd5c9ced36081427ddfd3de03d1b (diff)
downloadspreadsheet-parsexlsx-184bd929cdd7059c5387c2e753ab63731020d537.tar.gz
spreadsheet-parsexlsx-184bd929cdd7059c5387c2e753ab63731020d537.zip
handle the 'e' format (fixes #7)
Diffstat (limited to 'lib')
-rw-r--r--lib/Spreadsheet/ParseXLSX.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Spreadsheet/ParseXLSX.pm b/lib/Spreadsheet/ParseXLSX.pm
index d79515f..a7db72b 100644
--- a/lib/Spreadsheet/ParseXLSX.pm
+++ b/lib/Spreadsheet/ParseXLSX.pm
@@ -164,6 +164,9 @@ sub _parse_sheet {
$long_type = 'Text';
$val = $val ? "TRUE" : "FALSE";
}
+ elsif ($type eq 'e') {
+ $long_type = 'Text';
+ }
elsif ($type eq 'str') {
$long_type = 'Text';
}