From b8c51e9c7ae72f2c40d29589f37b8f14b3bb298b Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 10 Nov 2016 13:02:03 +0100 Subject: [PATCH] Fix type --- app/organization/core/templatetags/organization_tags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/organization/core/templatetags/organization_tags.py b/app/organization/core/templatetags/organization_tags.py index 2411cb36..bbf6718b 100644 --- a/app/organization/core/templatetags/organization_tags.py +++ b/app/organization/core/templatetags/organization_tags.py @@ -91,7 +91,7 @@ def no_parents(events): def get_mezzanine_menu_name(menu_id): if menu_id: return settings.PAGE_MENU_TEMPLATES[int(menu_id)-1][1] - return 1 + return 'None' @register.filter def get_type(objects, type): -- 2.39.5