Skip to content

Commit

Permalink
Expense categories was going back 13 months
Browse files Browse the repository at this point in the history
Should have only been going back one month.
  • Loading branch information
rerobins committed Jan 21, 2018
1 parent c12ad4c commit bb002b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnucash_reports/reports/expenses_monthly.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def expenses_box(definition):

def expenses_categories(definition):
expense_accounts = parse_walker_parameters(definition.get('expenses_base', []))
start_period = PeriodStart(definition.get('period_start', PeriodStart.this_month_year_ago))
start_period = PeriodStart(definition.get('period_start', PeriodStart.this_month))
end_period = PeriodEnd(definition.get('period_end', PeriodEnd.this_month))

bucket = CategoryCollate(decimal_generator, split_summation)
Expand Down

0 comments on commit bb002b7

Please sign in to comment.