django-configurations/tests/settings/single_inheritance.py
2013-09-09 11:02:43 +02:00

8 lines
216 B
Python

from .base import Base
class Inheritance(Base):
def TEMPLATE_CONTEXT_PROCESSORS(self):
return super(Inheritance, self).TEMPLATE_CONTEXT_PROCESSORS + (
'tests.settings.base.test_callback',)