summaryrefslogtreecommitdiff
path: root/python.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2004-09-23 21:08:42 -0400
committerJohn Wiegley <johnw@newartisans.com>2004-09-23 21:08:42 -0400
commitc57bfb72c3fd0c40bab1c47503c7f22c6a79a643 (patch)
tree4b3965e5df8bc9a5c58160f6ac8e08a542466df0 /python.cc
parent02580c2efbad9b364ab0dfa535c5fe0577cb818d (diff)
downloadfork-ledger-c57bfb72c3fd0c40bab1c47503c7f22c6a79a643.tar.gz
fork-ledger-c57bfb72c3fd0c40bab1c47503c7f22c6a79a643.tar.bz2
fork-ledger-c57bfb72c3fd0c40bab1c47503c7f22c6a79a643.zip
moved entry hooking mechanism to journal_t; further improvements to "entry"
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 b5d7d493..a7abb1ec 100644
--- a/python.cc
+++ b/python.cc
@@ -28,6 +28,7 @@ void export_walk();
void export_format();
void export_valexpr();
void export_datetime();
+void export_autoxact();
void initialize_ledger_for_python()
{
@@ -48,6 +49,7 @@ void initialize_ledger_for_python()
export_format();
export_valexpr();
export_datetime();
+ export_autoxact();
module_initialized = true;
}