From d82ddd3d74daf4b379fb75ea7bbb513e97a87c40 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Wed, 15 Sep 2010 18:40:39 +0200 Subject: [PATCH] fix favicon.ico location --- pandora/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora/urls.py b/pandora/urls.py index d2f52931..6d2b2b3c 100644 --- a/pandora/urls.py +++ b/pandora/urls.py @@ -34,7 +34,7 @@ urlpatterns = patterns('', # Uncomment the next line to enable the admin: (r'^admin/(.*)', include(admin.site.urls)), (r'^robots.txt$', serve_static_file, {'location': os.path.join(settings.STATIC_ROOT, 'robots.txt'), 'content_type': 'text/plain'}), - (r'^favicon.ico$', serve_static_file, {'location': os.path.join(settings.STATIC_ROOT, 'static/png/icon.16.png'), 'content_type': 'image/x-icon'}), + (r'^favicon.ico$', serve_static_file, {'location': os.path.join(settings.STATIC_ROOT, 'png/icon.16.png'), 'content_type': 'image/x-icon'}), ) if settings.DEBUG: