summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-12-29 06:39:45 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-12-29 06:39:45 +0100
commit6ad04a4ce0d3024e9afc53b9351093e3b4ae366d (patch)
tree2ccb44788545332dcbedd62d37b297cfd13b5f5e
parent258cbcd0d394c83dd66e1887b414d59915d3db74 (diff)
improve formula support
-rw-r--r--msodumper/formula.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/msodumper/formula.py b/msodumper/formula.py
index 8ecece5..4827295 100644
--- a/msodumper/formula.py
+++ b/msodumper/formula.py
@@ -221,6 +221,9 @@ class PtgAtt(PtgBase):
# PtgAttSemi: volatile
self.attName = 'volatile'
self.strm.readBytes(2) # ignore bytes
+ elif attType == 0x10:
+ self.attName = 'sum'
+ self.strm.readBytes(2) # ignore bytes
else:
raise FormulaParserError("unknown attribute token type (0x%2.2X)"%attType)