From 17808869b29e73e8a12129e3f52d885d484936c9 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sun, 26 Sep 2004 01:02:43 -0400 Subject: updated main.py to reflect recent changes to main.cc --- main.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'main.py') diff --git a/main.py b/main.py index 0386b509..b5f52db0 100755 --- a/main.py +++ b/main.py @@ -328,13 +328,14 @@ if not (command == "b" or command == "E"): if config.show_collapsed: handler = CollapseTransactions(handler); - if config.show_subtotal: + if config.days_of_the_week: + handler = DowTransactions(handler) + elif config.show_subtotal: handler = SubtotalTransactions(handler) - elif config.report_interval: + + if config.report_interval: handler = IntervalTransactions(handler, config.report_interval) handler = SortTransactions(handler, "d") - elif config.days_of_the_week: - handler = DowTransactions(handler) # The next two transaction filters are used by all reports. -- cgit v1.2.3