Minor fixes.
[wolnelektury.git] / src / contact / urls.py
index f2ef944..9fbce2f 100644 (file)
@@ -1,11 +1,13 @@
-# -*- coding: utf-8 -*-
-from django.conf.urls import patterns, url
+# 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 import url
 from . import views
 
-urlpatterns = patterns(
-    'contact.views',
+
+urlpatterns = [
     url(r'^(?P<form_tag>[^/]+)/$', views.form, name='contact_form'),
     url(r'^(?P<form_tag>[^/]+)/thanks/$', views.thanks, name='contact_thanks'),
     url(r'^attachment/(?P<contact_id>\d+)/(?P<tag>[^/]+)/$', views.attachment, name='contact_attachment'),
     url(r'^results/(?P<contact_id>\d+)/(?P<digest>[0-9a-f]+)/', views.results, name='contact_results'),
-)
+]