1
0
mirror of https://github.com/r4sas/py-i2phosts synced 2025-01-09 06:18:05 +00:00
py-i2phosts/pyi2phosts/jump/urls.py
Hidden Z 154eb7f7c2 Replace deprecated imports with actual
django.conf.urls.defaults is deprecated since django 1.5

old: from django.conf.urls.defaults import *
new: from django.conf.urls import *
2013-09-27 18:19:49 +00:00

8 lines
129 B
Python

from django.conf.urls import *
urlpatterns = patterns('pyi2phosts.jump.views',
(r'^([^$/]+)', 'jumper'),
(r'', 'index'),
)