Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
python-ofxclient
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian Python Team
packages
python-ofxclient
Commits
1e54b014
Commit
1e54b014
authored
5 years ago
by
Antonio Terceiro
Browse files
Options
Downloads
Patches
Plain Diff
New upstream version 2.0.4
parent
949fc864
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.travis.yml
+1
-1
1 addition, 1 deletion
.travis.yml
CHANGELOG.md
+5
-0
5 additions, 0 deletions
CHANGELOG.md
ofxclient/cli.py
+1
-1
1 addition, 1 deletion
ofxclient/cli.py
ofxclient/version.py
+1
-1
1 addition, 1 deletion
ofxclient/version.py
with
8 additions
and
3 deletions
.travis.yml
+
1
−
1
View file @
1e54b014
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
This diff is collapsed.
Click to expand it.
CHANGELOG.md
+
5
−
0
View file @
1e54b014
# 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
...
...
This diff is collapsed.
Click to expand it.
ofxclient/cli.py
+
1
−
1
View file @
1e54b014
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
ofxclient/version.py
+
1
−
1
View file @
1e54b014
from
__future__
import
unicode_literals
__version__
=
'
2.0.
3
'
__version__
=
'
2.0.
4
'
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment