Skip to content

Commit

Permalink
Fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
reubano committed Apr 5, 2018
1 parent 12493f6 commit a5ee916
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions csv2ofx/ofx.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,11 @@ def transaction(self, **kwargs):
content += '\t\t\t\t\t\t<DTPOSTED>%s</DTPOSTED>\n' % time_stamp
content += '\t\t\t\t\t\t<TRNAMT>%(amount)0.2f</TRNAMT>\n' % kwargs
content += '\t\t\t\t\t\t<FITID>%(id)s</FITID>\n' % kwargs

if kwargs.get('check_num') is not None:
extra = '\t\t\t\t\t\t<CHECKNUM>%(check_num)s</CHECKNUM>\n'
content += extra % kwargs

content += '\t\t\t\t\t\t<NAME>%(payee)s</NAME>\n' % kwargs

if kwargs.get('memo'):
Expand Down

0 comments on commit a5ee916

Please sign in to comment.