Remove lazy view string loading from urls.py as per Django's deprecation plan.

This commit is contained in:
Roberto Rosario
2016-11-02 17:38:54 -04:00
parent 696c2be2f3
commit 3ab4778814
15 changed files with 94 additions and 74 deletions

View File

@@ -9,7 +9,7 @@ from .views import (
)
urlpatterns = patterns(
'django_gpg.views',
'',
url(
r'^(?P<pk>\d+)/$', KeyDetailView.as_view(), name='key_detail'
),