django-configurations/tests/settings/single_inheritance.py

9 lines
216 B
Python
Raw Normal View History

2012-07-21 13:56:04 +00:00
from .base import Base
class Inheritance(Base):
def TEMPLATE_CONTEXT_PROCESSORS(self):
return super(Inheritance, self).TEMPLATE_CONTEXT_PROCESSORS + (
'tests.settings.base.test_callback',)