summaryrefslogtreecommitdiff
path: root/main.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2004-09-10 18:38:52 -0400
committerJohn Wiegley <johnw@newartisans.com>2004-09-10 18:38:52 -0400
commite1d6c4bff27f41fbe57738205ba3548554380a73 (patch)
tree270da6408bfdbbc10787e6ca1439aa715d7a6fbe /main.cc
parente414123ecb472d1f86a2f1cfdbd2732144c20f0d (diff)
downloadfork-ledger-e1d6c4bff27f41fbe57738205ba3548554380a73.tar.gz
fork-ledger-e1d6c4bff27f41fbe57738205ba3548554380a73.tar.bz2
fork-ledger-e1d6c4bff27f41fbe57738205ba3548554380a73.zip
interval_t objects now play nicely with python. see the bottom of main.py
Diffstat (limited to 'main.cc')
-rw-r--r--main.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/main.cc b/main.cc
index b2a9e7b8..861a252c 100644
--- a/main.cc
+++ b/main.cc
@@ -202,8 +202,7 @@ chain_formatters(const std::string& command,
else if (config.report_interval)
ptrs.push_back(formatter =
new interval_transactions(formatter,
- config.report_interval,
- config.interval_begin));
+ config.report_interval));
else if (config.days_of_the_week)
ptrs.push_back(formatter = new dow_transactions(formatter));
}