~phanatic/django-configglue/more-supported-releases

« back to all changes in this revision

Viewing changes to django_configglue/schema.py

  • Committer: Ricardo Kirkner
  • Date: 2011-08-13 23:45:13 UTC
  • mfrom: (62.1.1 825191-caches-wrong-item)
  • Revision ID: ricardo.kirkner@canonical.com-20110813234513-j25w51ijix2g8136
fixed caches setting specification in django 1.3 schema

Show diffs side-by-side

added added

removed removed

Lines of Context:
1002
1002
        # CACHE #
1003
1003
        #########
1004
1004
 
1005
 
        caches = DictOption()
 
1005
        caches = DictOption(
 
1006
            item=UpperCaseDictOption(spec={
 
1007
                'backend': StringOption(),
 
1008
                'location': StringOption()})
 
1009
            )
1006
1010
        cache_middleware_alias = StringOption(default='default')
1007
1011
 
1008
1012
        ############