diff options
Diffstat (limited to 'python.cc')
-rw-r--r-- | python.cc | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -5,12 +5,6 @@ using namespace boost::python; #include "ledger.h" #include "acconf.h" -static struct cleanup_ledger_t { - ~cleanup_ledger_t() { - ledger::shutdown(); - } -} _cleanup_ledger; - void export_amount(); void export_balance(); void export_value(); @@ -37,5 +31,4 @@ BOOST_PYTHON_MODULE(ledger) { export_gnucash(); #endif export_option(); - ledger::initialize(); } |