diff options
author | John Wiegley <johnw@newartisans.com> | 2009-11-12 14:29:08 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-12 14:29:08 -0500 |
commit | bfd9ecf2af079894f95bac365818c9548f561039 (patch) | |
tree | dce7e13ec7ad8f18bc628efe511d17e94bc3e16d /src/pyinterp.cc | |
parent | a034435c4287aba7fd32ed63a745e560350c924a (diff) | |
parent | 49a356f2d260ed0cc071ca1aa82027bd325b0b8b (diff) | |
download | fork-ledger-bfd9ecf2af079894f95bac365818c9548f561039.tar.gz fork-ledger-bfd9ecf2af079894f95bac365818c9548f561039.tar.bz2 fork-ledger-bfd9ecf2af079894f95bac365818c9548f561039.zip |
Merge branch 'next'
Diffstat (limited to 'src/pyinterp.cc')
-rw-r--r-- | src/pyinterp.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/pyinterp.cc b/src/pyinterp.cc index 394739c4..0a56049c 100644 --- a/src/pyinterp.cc +++ b/src/pyinterp.cc @@ -60,19 +60,19 @@ void export_xact(); void initialize_for_python() { - export_account(); + export_times(); + export_utils(); + export_commodity(); export_amount(); + export_value(); + export_account(); export_balance(); - export_commodity(); export_expr(); export_format(); export_item(); - export_journal(); export_post(); - export_times(); - export_utils(); - export_value(); export_xact(); + export_journal(); } struct python_run |