Generated: Wed 2013-03-13 10:33 CET
Source file: /media/Envs/Envs/filer-gallery/lib/python2.7/site-packages/cms/__init__.py
Stats: 0 executed, 4 missed, 5 excluded, 8 ignored
# -*- coding: utf-8 -*-__version__ = '2.3.5'# patch settingstry: from django.conf import settings if 'cms' in settings.INSTALLED_APPS: from conf import patch_settings patch_settings()except ImportError: # pragma: no cover """ This exception means that either the application is being built, or is otherwise installed improperly. Both make running patch_settings irrelevant. """ pass