You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current step always runs Site.objects.get_current() but does not catch Site.DoesNotExist (if no sites) or ImproperlyConfigured (if no SITE_ID in settings, and not in a request context so the host can be used). This means that if the step is run on a database with no Sites, it will fail.
The current step always runs
Site.objects.get_current()
but does not catchSite.DoesNotExist
(if no sites) orImproperlyConfigured
(if noSITE_ID
in settings, and not in a request context so the host can be used). This means that if the step is run on a database with no Sites, it will fail.Reported by @SilviaAmAm and @sjoerdie .
The text was updated successfully, but these errors were encountered: