updated main.py to reflect recent changes to main.cc

This commit is contained in:
John Wiegley 2004-09-26 01:02:43 -04:00
parent 0c36849f3f
commit 17808869b2

View file

@ -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.