Fixed URLconf issues, added seperate live/test db setting

This commit is contained in:
2010-02-25 18:17:29 +00:00
parent 12a7af2541
commit 131bc18d0e
4 changed files with 23 additions and 9 deletions

View File

@@ -1,5 +1,7 @@
from django.conf.urls.defaults import *
from sso import views
urlpatterns = patterns('',
(r'^profile/' 'views.profile'),
(r'^profile/', views.profile),
)