summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@klebos.com>2020-06-07 17:49:58 +0100
committerPhilip Sargent <philip.sargent@klebos.com>2020-06-07 17:49:58 +0100
commit9237a6262ef310d57df6e40631c7de738cdc2f05 (patch)
tree5889db2ff80028d232d08669261a8aabcd997715 /urls.py
parentfcfda644d3a05c365217bff9f12a16bb343a57d5 (diff)
downloadtroggle-9237a6262ef310d57df6e40631c7de738cdc2f05.tar.gz
troggle-9237a6262ef310d57df6e40631c7de738cdc2f05.tar.bz2
troggle-9237a6262ef310d57df6e40631c7de738cdc2f05.zip
Make import robust against duplicate kataster numbers
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urls.py b/urls.py
index 7d28763..95f35a4 100644
--- a/urls.py
+++ b/urls.py
@@ -23,7 +23,7 @@ actualurlpatterns = patterns('',
url(r'^troggle$', views_other.frontpage, name="frontpage"),
- url(r'^caves/?$', views_caves.caveindex, name="caveindex"),
+ url(r'^caves$', views_caves.caveindex, name="caveindex"),
url(r'^people/?$', views_logbooks.personindex, name="personindex"),
url(r'^newqmnumber/?$', views_other.ajax_QM_number, ),