8000 build(deps): bump amannn/action-semantic-pull-request from 5.5.2 to 5.5.3 by dependabot[bot] · Pull Request #7946 · django-cms/django-cms · GitHub
[go: up one dir, main page]

Skip to content

build(deps): bump amannn/action-semantic-pull-request from 5.5.2 to 5.5.3 #7946

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
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
Next Next commit
Fix lint issues in pagemodel.py
  • Loading branch information
fsbraun authored Jul 1, 2024
commit 3ae7f3f084ef2f3809014e71bb240004926c4149
4 changes: 2 additions & 2 deletions cms/models/pagemodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -657,8 +657,8 @@ def clear_cache(self, language=None, menu=False, placeholder=False):

placeholders = self.get_placeholders(language)

for placeholder in placeholders:
placeholder.clear_cache(language, site_id=self.node.site_id)
for placeholder_instance in placeholders:
placeholder_instance.clear_cache(language, site_id=self.node.site_id)

if menu:
# Clears all menu caches for this page's site
Expand Down
Loading
0