We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The HSBC Brasil ofx file parse fail because BANKTRANLIST :: DTSTART tag is in %d%m%y format.
The error happens on ofxparse.py line 396. I fixed locally by changing to this code:
try: return datetime.datetime.strptime( ofxDateTime[:8], '%Y%m%d') - timeZoneOffset except: return datetime.datetime.strptime( ofxDateTime[:6], '%d%m%y') - timeZoneOffset
I don't know if is right fix that way, but i want to share this problem.
Tks,
Diogo.
The text was updated successfully, but these errors were encountered:
Thanks for the report Diogo. I'll leave this report open in case anyone would like to try fixing the issue.
Sorry, something went wrong.
No branches or pull requests
The HSBC Brasil ofx file parse fail because BANKTRANLIST :: DTSTART tag is in %d%m%y format.
The error happens on ofxparse.py line 396. I fixed locally by changing to this code:
I don't know if is right fix that way, but i want to share this problem.
Tks,
Diogo.
The text was updated successfully, but these errors were encountered: