Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun committed Jan 28, 2025
1 parent 26c4221 commit 0417e3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions djangocms_versioning/cms_toolbars.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
from cms import __version__ as cms_version
from cms.cms_toolbars import (
ADD_PAGE_LANGUAGE_BREAK,
BasicToolbar,
LANGUAGE_MENU_IDENTIFIER,
BasicToolbar,
PageToolbar,
PlaceholderToolbar,
)
Expand Down Expand Up @@ -445,7 +445,7 @@ def add_language_menu(self):
return super().add_language_menu()

language_menu = self.toolbar.get_or_create_menu(
LANGUAGE_MENU_IDENTIFIER, _('Language'), position=-1
LANGUAGE_MENU_IDENTIFIER, _("Language"), position=-1
)
for code, name in get_language_tuple(self.current_site.pk):
# Get the page content, it could be draft too!
Expand Down

0 comments on commit 0417e3a

Please sign in to comment.