diff options
author | mahesh | 2016-04-01 11:20:18 +0530 |
---|---|---|
committer | mahesh | 2016-04-01 11:20:18 +0530 |
commit | 07d7303d23d41e99aa1d13f053b133b9484fbb63 (patch) | |
tree | 3ff7b659c923fd19124e3f8b105c0b3dea850d0c /PythonTBC | |
parent | 8ea2fd67d85edab15380f72cc8c56717db69261a (diff) | |
download | Python-TBC-Interface-07d7303d23d41e99aa1d13f053b133b9484fbb63.tar.gz Python-TBC-Interface-07d7303d23d41e99aa1d13f053b133b9484fbb63.tar.bz2 Python-TBC-Interface-07d7303d23d41e99aa1d13f053b133b9484fbb63.zip |
made minor changes in admin url
Diffstat (limited to 'PythonTBC')
-rw-r--r-- | PythonTBC/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PythonTBC/urls.py b/PythonTBC/urls.py index 5cd6ff1..2b145bf 100644 --- a/PythonTBC/urls.py +++ b/PythonTBC/urls.py @@ -18,7 +18,7 @@ urlpatterns = patterns('', # url(r'^admin/doc/', include('django.contrib.admindocs.urls')), # Uncomment the next line to enable the admin: - url(r'^admin/', include(admin.site.urls)), + url(r'^admin', include(admin.site.urls)), url(r'^', include('tbc.urls', namespace='tbc')), url(r'^sitemap\.xml$', 'django.contrib.sitemaps.views.sitemap', {'sitemaps': sitemaps}), |