From 029a4e5696f963619b2f3cbf5d15055b26eace59 Mon Sep 17 00:00:00 2001 From: Umair Khan Date: Thu, 23 Mar 2017 09:01:39 +0500 Subject: [PATCH] backends.py: Update comment in process_do_auth. --- zproject/backends.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zproject/backends.py b/zproject/backends.py index 1333f69e6a..604af15f9f 100644 --- a/zproject/backends.py +++ b/zproject/backends.py @@ -145,7 +145,7 @@ class SocialAuthMixin(ZulipAuthMixin): def process_do_auth(self, user_profile, *args, **kwargs): # type: (UserProfile, *Any, **Any) -> Optional[HttpResponse] - # This function needs to be imported from here due to the cyclic + # These functions need to be imported here to avoid cyclic # dependency. from zerver.views.auth import (login_or_register_remote_user, redirect_to_subdomain_login_url)