Skip to content
Snippets Groups Projects
Commit 1e54b014 authored by Antonio Terceiro's avatar Antonio Terceiro
Browse files

New upstream version 2.0.4

parent 949fc864
No related branches found
No related tags found
No related merge requests found
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install -r requirements-test.txt
script: nosetests --verbose tests/*.py
# Change Log
All notable changes to this project will be documented in this file.
## [2.0.4] - 2019-02-10
- fix a number of python3 encoding issues
- fix bug with ConfigParser
- Vanguard and Citibank bug fixes
## [2.0.3] - 2017-04-27
- Update quicken client version to 2500
- CLI option to set OFX version
......
......@@ -53,7 +53,7 @@ def run():
ofxdata = a.download(days=args.download_days)
else:
ofxdata = combined_download(accounts, days=args.download_days)
args.download.write(ofxdata.read())
args.download.write(ofxdata.read().encode())
if args.open:
open_with_ofx_handler(args.download.name)
sys.exit(0)
......
from __future__ import unicode_literals
__version__ = '2.0.3'
__version__ = '2.0.4'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment