Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Django / contrib / webdesign / __init__.py
Size: Mime:
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
)