summaryrefslogtreecommitdiff
path: root/python.cc
diff options
context:
space:
mode:
Diffstat (limited to 'python.cc')
-rw-r--r--python.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/python.cc b/python.cc
index 5ed9be31..d469c2f3 100644
--- a/python.cc
+++ b/python.cc
@@ -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();
}