django-select2/django_select2/urls.py
Stéphane Raimbault d24b6a5206 Pylint and useless imports
widgets.py contains DOS and Unix line returns, I've converted it
to DOS only to keep changes small in this commit.
2012-11-09 18:20:32 +01:00

7 lines
203 B
Python

from django.conf.urls.defaults import *
from .views import AutoResponseView
urlpatterns = patterns("",
url(r"^fields/auto.json$", AutoResponseView.as_view(), name="django_select2_central_json"),
)