aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/quote_parsing/parse_emails.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/quote_parsing/parse_emails.py b/python/quote_parsing/parse_emails.py
index 6d50eda9..d2b7a609 100644
--- a/python/quote_parsing/parse_emails.py
+++ b/python/quote_parsing/parse_emails.py
@@ -306,7 +306,9 @@ def parse_ms_block(fh, indextype):
try:
vol, vol_change_be = vol.split()
except ValueError:
- vol, _, vol_change, be = vol.split()
+ vol, _, vol_change, be = (
+ vol.replace("[", "").replace("]", "").split()
+ )
# They have PrcVol as a column now
vals += [vol]
r.append(vals)