Skip to content

Commit 01f98aa

Browse files
authored
Merge pull request #96 from 501st-alpha1/fix-ledger-payees-actual-accounts
Limit payee lookup to actual accounts (Ledger)
2 parents e7ac992 + 238c649 commit 01f98aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ledgerautosync/ledgerwrap.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def check_transaction_by_id(self, key, value):
171171
def load_payees(self):
172172
if self.payees is None:
173173
self.payees = {}
174-
r = self.run(["show"])
174+
r = self.run(["show", "--actual"])
175175
for line in r:
176176
self.add_payee(line[2], line[3])
177177

0 commit comments

Comments
 (0)