Moved RequestSite import to the toplevel.

This commit is contained in:
Claude Paroz 2021-11-11 08:22:04 +01:00 committed by Mariusz Felisiak
parent 05cde4764d
commit 78163d1ac4
1 changed files with 4 additions and 3 deletions

View File

@ -1,16 +1,17 @@
from django.apps import apps
from .requests import RequestSite
def get_current_site(request):
"""
Check if contrib.sites is installed and return either the current
``Site`` object or a ``RequestSite`` object based on the request.
"""
# Imports are inside the function because its point is to avoid importing
# the Site models when django.contrib.sites isn't installed.
# Import is inside the function because its point is to avoid importing the
# Site models when django.contrib.sites isn't installed.
if apps.is_installed('django.contrib.sites'):
from .models import Site
return Site.objects.get_current(request)
else:
from .requests import RequestSite
return RequestSite(request)