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