summaryrefslogtreecommitdiff
path: root/python.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2004-09-23 21:54:11 -0400
committerJohn Wiegley <johnw@newartisans.com>2004-09-23 21:54:11 -0400
commit1416f3b97841e27e94220a1f37c70484c25ff37c (patch)
treec7e18c98656c70b78e02a20f9bae15093ea57051 /python.cc
parent7a195320498ad75297fcbd47dcf31e7dd6b8d9af (diff)
downloadfork-ledger-1416f3b97841e27e94220a1f37c70484c25ff37c.tar.gz
fork-ledger-1416f3b97841e27e94220a1f37c70484c25ff37c.tar.bz2
fork-ledger-1416f3b97841e27e94220a1f37c70484c25ff37c.zip
a bit more refactoring
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 6c2fef2a..55c607bd 100644
--- a/python.cc
+++ b/python.cc
@@ -29,6 +29,7 @@ void export_format();
void export_valexpr();
void export_datetime();
void export_autoxact();
+void export_derive();
void initialize_ledger_for_python()
{
@@ -50,6 +51,7 @@ void initialize_ledger_for_python()
export_valexpr();
export_datetime();
export_autoxact();
+ export_derive();
module_initialized = true;
}