diff options
Diffstat (limited to 'python/gentoo_main/urls.py')
-rw-r--r-- | python/gentoo_main/urls.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/gentoo_main/urls.py b/python/gentoo_main/urls.py index 1eb5179..ff710c4 100644 --- a/python/gentoo_main/urls.py +++ b/python/gentoo_main/urls.py @@ -1,7 +1,8 @@ # Copyright 1998-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -from django.conf.urls import patterns, include, url +from django.conf.urls import url +from . import views urlpatterns = [ url(r'^home/$', views.home), |