diff options
Diffstat (limited to 'python/quote_parsing/parse_emails.py')
| -rw-r--r-- | python/quote_parsing/parse_emails.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/quote_parsing/parse_emails.py b/python/quote_parsing/parse_emails.py index 1e5ee4f2..4dca21ff 100644 --- a/python/quote_parsing/parse_emails.py +++ b/python/quote_parsing/parse_emails.py @@ -307,7 +307,7 @@ def parse_ms_block(fh, indextype): vol, vol_change_be = vol.split() except ValueError: vol, _, vol_change, be = ( - vol.replace("]|[", "").replace("%", "% ").split() + re.sub(r"\]|\[", "", vol).replace("%", "% ").split() ) # They have PrcVol as a column now |
