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 RemovedInDjango20Warning

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

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