diff options
author | John Wiegley <johnw@newartisans.com> | 2009-11-12 05:09:52 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-12 05:11:09 -0500 |
commit | cd0a04077867b89e92ba91775c915050abcd620a (patch) | |
tree | 2982f89bb6b9b96e1cd16cc452e5c500870056ea /src/pyinterp.cc | |
parent | 9858b4957fe40cba0a1f0a8ca1ba01feb148fb49 (diff) | |
download | fork-ledger-cd0a04077867b89e92ba91775c915050abcd620a.tar.gz fork-ledger-cd0a04077867b89e92ba91775c915050abcd620a.tar.bz2 fork-ledger-cd0a04077867b89e92ba91775c915050abcd620a.zip |
Reordered the export_ calls in pyinterp.cc
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 |