fix: print the line '!type:Bank' only once

This commit is contained in:
Romain Bignon 2011-09-07 10:16:47 +02:00
commit 5541107a7f

View file

@ -44,6 +44,7 @@ class QifFormatter(IFormatter):
result += u'T%s\n' % item['amount']
result += u'M%s\n' % item['label']
result += u'^\n'
self.count += 1
return result
class TransferFormatter(IFormatter):