aboutsummaryrefslogtreecommitdiffstats
path: root/python/quote_parsing/parse_emails.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/quote_parsing/parse_emails.py')
-rw-r--r--python/quote_parsing/parse_emails.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/python/quote_parsing/parse_emails.py b/python/quote_parsing/parse_emails.py
index d2b7a609..1e5ee4f2 100644
--- a/python/quote_parsing/parse_emails.py
+++ b/python/quote_parsing/parse_emails.py
@@ -307,9 +307,10 @@ def parse_ms_block(fh, indextype):
vol, vol_change_be = vol.split()
except ValueError:
vol, _, vol_change, be = (
- vol.replace("[", "").replace("]", "").split()
+ vol.replace("]|[", "").replace("%", "% ").split()
)
# They have PrcVol as a column now
+
vals += [vol]
r.append(vals)
return makedf(r, indextype, "MS")