1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00

Fix UserSocialAuth import path

This commit is contained in:
Pascal F 2024-09-02 07:06:07 +02:00
parent 8992babec6
commit 7b9e0fd40b
No known key found for this signature in database
GPG key ID: 3798FD915CA856A7

View file

@ -2,7 +2,7 @@ import logging
from django.conf import settings from django.conf import settings
import requests import requests
from social.apps.django_app.default.models import UserSocialAuth from social_django.models import UserSocialAuth
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)