Collin Anderson fcde3f0e6e example django app: removed warnings on django 1.8
compatible with django 1.4+
2014-09-09 11:29:49 -04:00

6 lines
110 B
Python
Executable File

from django.conf.urls.defaults import include, url
urlpatterns = [
url(r'^', include("testing.urls")),
]