mirror of
https://github.com/r4sas/py-i2phosts
synced 2025-01-08 22:07:55 +00:00
154eb7f7c2
django.conf.urls.defaults is deprecated since django 1.5 old: from django.conf.urls.defaults import * new: from django.conf.urls import *
8 lines
168 B
Python
8 lines
168 B
Python
from django.conf.urls import *
|
|
|
|
urlpatterns = patterns('pyi2phosts.postkey.views',
|
|
(r'^$', 'addkey'),
|
|
(r'^success/', 'success'),
|
|
(r'^subdomain/', 'subdomain'),
|
|
)
|