summaryrefslogtreecommitdiff
path: root/python.cc
diff options
context:
space:
mode:
Diffstat (limited to 'python.cc')
-rw-r--r--python.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/python.cc b/python.cc
index 36d80c7c..5ed9be31 100644
--- a/python.cc
+++ b/python.cc
@@ -22,6 +22,7 @@ void export_qif();
#ifdef READ_GNUCASH
void export_gnucash();
#endif
+void export_option();
BOOST_PYTHON_MODULE(ledger) {
export_amount();
@@ -35,5 +36,6 @@ BOOST_PYTHON_MODULE(ledger) {
#ifdef READ_GNUCASH
export_gnucash();
#endif
+ export_option();
ledger::initialize();
}