8000 fix: Grouper models must not assume language grouper (#8194) by fsbraun · Pull Request #8195 · django-cms/django-cms · GitHub
[go: up one dir, main page]

Skip to content

fix: Grouper models must not assume language grouper (#8194) #8195

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 2, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix ruff linting
  • Loading branch information
fsbraun committed Apr 2, 2025
commit 10bb4d80a6ee4c065bd74380a21219827049a39d
2 changes: 1 addition & 1 deletion cms/tests/test_placeholder.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def test_get_last_plugin_position(self):
n = 4 # This will be the position of the last plugin

plugins = {lang: [] for lang in language_fun}
parent = {lang: None for lang in language_fun}
parent = dict.fromkeys(language_fun)
for i in range(n):
for lang in language_fun:
parent[lang] = add_plugin(ph, 'TextPlugin', lang, target=parent[lang]).cmsplugin_ptr
Expand Down
Loading
0