From 9ff3fb23c84d81844d64d30eb6be1c9219ce47a4 Mon Sep 17 00:00:00 2001 From: yomguy Date: Tue, 15 Mar 2011 12:37:25 +0100 Subject: [PATCH] fix marker url --- telemeta/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telemeta/urls.py b/telemeta/urls.py index 792dd9e7..f2109633 100644 --- a/telemeta/urls.py +++ b/telemeta/urls.py @@ -64,7 +64,7 @@ urlpatterns = patterns('', name="telemeta-items"), url(r'^items/(?P[A-Za-z0-9._-]+)/$', web_view.item_detail, name="telemeta-item-detail"), - url(r'^items/(?P[A-Za-z0-9._-]+)/marker/(?P)$', web_view.item_detail, + url(r'^items/(?P[A-Za-z0-9._-]+)/marker/(?P[A-Za-z0-9]+)/$', web_view.item_detail, name="telemeta-item-detail"), url(r'^items/(?P[A-Za-z0-9._-]+)/dc/$', web_view.item_detail, {'template': 'telemeta/mediaitem_detail_dc.html'}, -- 2.39.5