telemeta.config module
from django.conf import settings def check(): """Perform general configuration verifications""" if not len(settings.ADMINS): raise ConfigurationError("The ADMINS configuration option must be set in settings.py.") class ConfigurationError(Exception): pass
Functions
def check(
)
Perform general configuration verifications
def check(): """Perform general configuration verifications""" if not len(settings.ADMINS): raise ConfigurationError("The ADMINS configuration option must be set in settings.py.")
Classes
class ConfigurationError
class ConfigurationError(Exception): pass
Ancestors (in MRO)
- ConfigurationError
- exceptions.Exception
- exceptions.BaseException
- __builtin__.object
Class variables
var args
var message