diff options
| -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 0b2f05a7..d32d8333 100644 --- a/python/quote_parsing/parse_emails.py +++ b/python/quote_parsing/parse_emails.py @@ -163,7 +163,7 @@ def parse_bnp_block(fh, indextype): line = line.strip() if line.startswith("Ref") or line == "": break - line = re.sub("[/]", " ", line) + line = re.sub("[/|]", " ", line) vals = re.sub(" +", " ", line).rstrip().split(" ") if indextype == "HY": vals += [""] |
