From abc9c5a8d17ef2beb536e0727bb3fcbcd484d6ad Mon Sep 17 00:00:00 2001 From: Florian Eitel Date: Sat, 14 Jan 2023 22:51:07 +0100 Subject: [PATCH] Update to DropboxOAuth2V2 The old version somehow does not work anymore and throws load errors. --- src/nsupdate/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nsupdate/settings/base.py b/src/nsupdate/settings/base.py index 47c140e..addaca2 100644 --- a/src/nsupdate/settings/base.py +++ b/src/nsupdate/settings/base.py @@ -308,7 +308,7 @@ AUTHENTICATION_BACKENDS = ( 'social_core.backends.amazon.AmazonOAuth2', 'social_core.backends.bitbucket.BitbucketOAuth', 'social_core.backends.disqus.DisqusOAuth2', - 'social_core.backends.dropbox.DropboxOAuth', + 'social_core.backends.dropbox.DropboxOAuth2V2', 'social_core.backends.github.GithubOAuth2', 'social_core.backends.google.GoogleOAuth2', 'social_core.backends.reddit.RedditOAuth2',