diff --git a/ofxparse/ofxparse.py b/ofxparse/ofxparse.py index 8af6c60..95b5013 100644 --- a/ofxparse/ofxparse.py +++ b/ofxparse/ofxparse.py @@ -90,7 +90,7 @@ def read_headers(self): for line in head_data.splitlines(): # Newline? if line.strip() == six.b(""): - break + continue header, value = line.split(six.b(":")) header, value = header.strip().upper(), value.strip()