Changeset - 8a4fb5758cb8
[Not reviewed]
main
0 2 0
Ben Sturmfels (bsturmfels) - 29 days ago 2024-08-20 13:32:51
ben@sturm.com.au
statement_reconciler: Fix TypeError in Chase reconciler

There was an incorrect call to replace().
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
conservancy_beancount/reconcile/statement_reconciler.py
Show inline comments
...
 
@@ -292,3 +292,3 @@ def standardize_chase_record(row: Dict, line: int) -> Dict:
 
        # See also: https://awesome-beancount.com/
 
        'payee': (row['Description'] or '').replace('ORIG CO NAME:')[:20],
 
        'payee': (row['Description'] or '').replace('ORIG CO NAME:', '')[:20],
 
        'check_id': '',
setup.cfg
Show inline comments
...
 
@@ -2,3 +2,3 @@
 
name = conservancy_beancount
 
version = 1.20.0
 
version = 1.20.1
 
author = Software Freedom Conservancy
0 comments (0 inline, 0 general)