X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/0c3e8f92c425a22c1b9da737db89977d31312353..e7c8c7e1fd0fe2eb867b26ae205b75822204a45f:/apps/dictionary/urls.py diff --git a/apps/dictionary/urls.py b/apps/dictionary/urls.py index 1a33af966..2320f4773 100755 --- a/apps/dictionary/urls.py +++ b/apps/dictionary/urls.py @@ -2,11 +2,10 @@ # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # -from django.conf.urls.defaults import * +from django.conf.urls import patterns, url from dictionary.views import NotesView urlpatterns = patterns('dictionary.views', url(r'^$', NotesView.as_view(), name='dictionary_notes'), - url(r'(?P[a-z]|0-9)/$', NotesView.as_view(), name='dictionary_notes'), )