Remove specific url handler for favicon

Only used locally anyway, so we don't care. In production this is
handled by the webserver.
This commit is contained in:
Magnus Hagander
2018-03-10 10:40:30 -05:00
parent fd37389a3b
commit 06fe58aefd

View File

@ -161,11 +161,6 @@ urlpatterns = [
# Uncomment the next line to enable the admin:
url(r'^admin/', include(admin.site.urls)),
# This should not happen in production - serve by the webserver natively!
url(r'^(favicon.ico)$', 'django.views.static.serve', {
'document_root': 'media',
}),
# Crash testing URL :-)
url(r'^crashtest/$', pgweb.misc.views.crashtest),