Compare commits

..

No commits in common. "18f194caa573f25efd49cb4cc74f6444f2640599" and "a84b6722508b2d7f247e13901b3894557d4ac761" have entirely different histories.

2 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
*.pyc
syntax: glob
.env
build/*
dist/*

6
ir.py
View file

@ -14,9 +14,9 @@ class Rule(metaclass=PoolMeta):
""" list of models to add 'user_id' to context
"""
result = super(Rule, cls)._context_modelnames()
return result | {
result.extend([
'cashbook.planner',
'cashbook.planner.nextrun',
}
'cashbook.planner.nextrun'])
return result
# end Rule