summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAdam Bogdał <adam@bogdal.pl>2015-11-13 22:41:08 +0100
committerAdam Bogdał <adam@bogdal.pl>2015-11-13 22:41:08 +0100
commit25764e5be7f5e36ba2218a521bf4b33225885646 (patch)
tree9e6ed6ebe4aa5d17e9d65a46745e57cebf687840 /doc
parent1efded3d2052629ee906beecd240afc04b747d5c (diff)
downloaddjango-payments-taler-25764e5be7f5e36ba2218a521bf4b33225885646.tar.gz
django-payments-taler-25764e5be7f5e36ba2218a521bf4b33225885646.tar.bz2
django-payments-taler-25764e5be7f5e36ba2218a521bf4b33225885646.zip
Update docs
Diffstat (limited to 'doc')
-rw-r--r--doc/install.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/install.rst b/doc/install.rst
index 16c0bfd..f602092 100644
--- a/doc/install.rst
+++ b/doc/install.rst
@@ -10,10 +10,10 @@ Installation
#. Add the callback processor to your URL router::
# urls.py
- from django.conf.urls import include, patterns, url
+ from django.conf.urls import include, url
- urlpatterns = patterns('',
- url('^payments/', include('payments.urls')))
+ urlpatterns = [
+ url('^payments/', include('payments.urls'))]
#. Define a :class:`Payment` model by subclassing :class:`payments.models.BasePayment`::