Example #1
0
VERSION = (2, 0, 0, 'RC1')
__version__ = '.'.join(map(str, VERSION))

# patch settings 
from conf import patch_settings
patch_settings()

Example #2
0
from cmsplugin_markup.plugins.markdown.mark_down import Markup

# patch settings
try:
    from conf import patch_settings
    from django.conf import settings
    patch_settings()
except ImportError:
    """
    This exception means that either the application is being built, or is
    otherwise installed improperly. Both make running patch_settings
    irrelevant.
    """
    pass