On Thu, Jan 31, 2013 at 5:27 PM, Zack Williams <[email protected]> wrote:
> account.amount doesn't act the same as post.amount - printing it > results in a '<bound method Account.amount of <ledger.Account object > at 0x108898830>>' rather than an amount. I can't appear to add this > to a Balance object to convert it, and I'm not well versed enough in > the python internals to know how to proceed here. > Just a note that generally this message means that account.amount isn't a field, but rather a method. Try account.amount() if you haven't already. Hope this helps Ethan -- --- You received this message because you are subscribed to the Google Groups "Ledger" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
