8000 Refs #6083 -- Fixed PageUserGroup manager deprecation warning. (#6111) · django-cms/django-cms@07ad704 · GitHub
[go: up one dir, main page]

Skip to content

Commit 07ad704

Browse files
timgrahamczpython
authored andcommitted
Refs #6083 -- Fixed PageUserGroup manager deprecation warning. (#6111)
1 parent 6a426c2 commit 07ad704

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

cms/models/permissionmodels.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8 -*-
2+
import django
23
from django.apps import apps
34
from django.db import models
45
from django.conf import settings
@@ -267,6 +268,8 @@ class Meta:
267268
verbose_name = _('User group (page)')
268269
verbose_name_plural = _('User groups (page)')
269270
app_label = 'cms'
271+
if (1, 10) <= django.VERSION < (2, 0):
272+
manager_inheritance_from_future = True
270273

271274

272275
reversion_register(PagePermission)

0 commit comments

Comments
 (0)
0