Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

hemamaps / Django   python

Repository URL to install this package:

/ contrib / webdesign / __init__.py

import warnings

from django.utils.deprecation import RemovedInDjango110Warning


default_app_config = 'django.contrib.webdesign.apps.WebDesignConfig'

warnings.warn(
    "django.contrib.webdesign will be removed in Django 1.10. The "
    "{% lorem %} tag is now included in the built-in tags.",
    RemovedInDjango110Warning
)