cms: 9 total statements, 0.0% covered

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

  1. # -*- coding: utf-8 -*-
  2. __version__ = '2.3.5'
  3. # patch settings
  4. try:
  5. from django.conf import settings
  6. if 'cms' in settings.INSTALLED_APPS:
  7. from conf import patch_settings
  8. patch_settings()
  9. except ImportError: # pragma: no cover
  10. """
  11. This exception means that either the application is being built, or is
  12. otherwise installed improperly. Both make running patch_settings
  13. irrelevant.
  14. """
  15. pass