diff options
| -rw-r--r-- | python/quote_parsing/parse_emails.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/quote_parsing/parse_emails.py b/python/quote_parsing/parse_emails.py index 0b3ac91e..315cdd43 100644 --- a/python/quote_parsing/parse_emails.py +++ b/python/quote_parsing/parse_emails.py @@ -166,6 +166,8 @@ def parse_cs_block(fh, indextype): break line = re.sub("[/|]", " ", line) vals = re.sub(" +", " ", line).rstrip().split(" ") + if vals == [""]: + continue strike, *rest = vals # CS quotes payer first, so we need to move things around a bit if indextype == "IG": |
