mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
fix urls.py to no longer use include() with admin urls
This commit is contained in:
parent
e46b2495ce
commit
f72d942d54
1 changed files with 1 additions and 1 deletions
2
urls.py
2
urls.py
|
@ -47,7 +47,7 @@ urlpatterns = [
|
|||
url(r'^_dbcheck/mongo', static_views.mongo_check),
|
||||
url(r'^_dbcheck/redis', static_views.redis_check),
|
||||
url(r'^_dbcheck/elasticsearch', static_views.elasticsearch_check),
|
||||
url(r'^admin/', include(admin.site.urls)),
|
||||
url(r'^admin/', admin.site.urls),
|
||||
url(r'^about/?', static_views.about, name='about'),
|
||||
url(r'^faq/?', static_views.faq, name='faq'),
|
||||
url(r'^api/?', static_views.api, name='api'),
|
||||
|
|
Loading…
Add table
Reference in a new issue