fix b2g urls to force trailing slash

This commit is contained in:
James Long 2012-02-21 17:01:33 -05:00
Родитель 8c841b4299
Коммит 3b1c6549c6
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -2,7 +2,7 @@ from django.conf.urls.defaults import *
from views import b2g, about, faq
urlpatterns = patterns('',
(r'^b2g/faq/', faq),
(r'^b2g/about/', about),
(r'^b2g/', b2g),
(r'^b2g/faq/$', faq),
(r'^b2g/about/$', about),
(r'^b2g/$', b2g),
)