Skip to content

Commit 142c117

Browse files
committed
Merge pull request django-cms#3374 from yakky/fix_if
Fix typo
2 parents 8238506 + 8b060c6 commit 142c117

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cms/utils/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def validate_dependencies():
1111
if not app_is_installed('mptt'):
1212
raise ImproperlyConfigured('django CMS requires django-mptt package.')
1313

14-
if not app_is_installed('reversion'):
14+
if app_is_installed('reversion'):
1515
from reversion.admin import VersionAdmin
1616
if not hasattr(VersionAdmin, 'get_urls'):
1717
raise ImproperlyConfigured('django CMS requires newer version of reversion (VersionAdmin must contain get_urls method)')

0 commit comments

Comments
 (0)