From 5f32bb7449977fa78ce14ddfb46bd37c6bcb0737 Mon Sep 17 00:00:00 2001 From: Brett Parker Date: Thu, 25 Feb 2010 10:33:54 +0000 Subject: [PATCH] Make it so that we don't do anything silly in the context processor by trying to pull a section name that doesn't exist --- sommitrealweird/blog/context_processors.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/sommitrealweird/blog/context_processors.py b/sommitrealweird/blog/context_processors.py index 9c203cf..9505bb9 100644 --- a/sommitrealweird/blog/context_processors.py +++ b/sommitrealweird/blog/context_processors.py @@ -17,9 +17,14 @@ def content_breadcrumb(request): parts = path.split('/') if parts[0] == "section": - # Just need to add the section title to the breadcrumb - section = BlogSection.objects.get(slug__exact=parts[1]) - breadcrumb.append({'url': section.get_absolute_url(), 'title': section.title}) + # Just need to add the section title to the breadcrumb *if* we + # actually have a section + if len(parts) > 1: + try: + section = BlogSection.objects.get(slug__exact=parts[1]) + breadcrumb.append({'url': section.get_absolute_url(), 'title': section.title}) + except: + pass if len(parts) == 5 and \ parts[0].isdigit() and \ -- 2.30.2