diff options
Diffstat (limited to 'doc/ledger3.texi')
-rw-r--r-- | doc/ledger3.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ledger3.texi b/doc/ledger3.texi index b91a4214..0151f267 100644 --- a/doc/ledger3.texi +++ b/doc/ledger3.texi @@ -9218,7 +9218,7 @@ looking at its @code{xact} member: last_xact = None for post in ledger.read_journal("sample.dat").query(""): if post.xact != last_xact: - for post in post.xact.posts: + for post in post.xact.posts(): print "Transferring %s to/from %s" % (post.amount, post.account) last_xact = post.xact |