Fix code style
This commit is contained in:
parent
9d168f6f45
commit
a651144ec2
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import absolute_import, print_function, unicode_literals
|
||||
|
||||
from cms.models.pluginmodel import CMSPlugin
|
||||
from cms.plugin_base import CMSPluginBase
|
||||
from cms.plugin_pool import plugin_pool
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
|
|
@ -4,7 +4,7 @@ from __future__ import absolute_import, print_function, unicode_literals
|
|||
from cms.menu_bases import CMSAttachMenu
|
||||
from django.db.models.signals import post_delete, post_save
|
||||
from django.utils.translation import ugettext_lazy as _, get_language_from_request
|
||||
from menus.base import Modifier, NavigationNode
|
||||
from menus.base import NavigationNode
|
||||
from menus.menu_pool import menu_pool
|
||||
|
||||
from .models import BlogCategory, Post
|
||||
|
@ -51,6 +51,7 @@ class BlogCategoryMenu(CMSAttachMenu):
|
|||
|
||||
menu_pool.register_menu(BlogCategoryMenu)
|
||||
|
||||
|
||||
def clear_menu_cache(**kwargs):
|
||||
menu_pool.clear(all=True)
|
||||
|
||||
|
|
Loading…
Reference in a new issue