mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-03-16 22:10:31 +00:00
7 lines
194 B
Python
7 lines
194 B
Python
try:
|
|
from django import VERSION as _django_version
|
|
|
|
if _django_version < (3, 2):
|
|
default_app_config = "modeltranslation.apps.ModeltranslationConfig"
|
|
except ImportError:
|
|
pass
|