Skip to content

Commit 56e39c0

Browse files
committed
FIX super call
1 parent 26deb96 commit 56e39c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

poweremail_auth/poweremail_core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def login_smtp(self, cursor, uid, core_account, smtp_conn, context=None):
4747
auth_str = self.generate_oauth_2_string(core_account.email_id, token, base64_encode=False)
4848
self.smtp_authentication(smtp_conn, auth_str)
4949
else:
50-
super(PoweremailCoreAccounts, self).login_imap(cursor, uid, core_account, smtp_conn, context=context)
50+
super(PoweremailCoreAccounts, self).login_smtp(cursor, uid, core_account, smtp_conn, context=context)
5151

5252
def smtp_authentication(self, smtp_conn, auth_string):
5353
if config.get('debug_enabled', False):

0 commit comments

Comments
 (0)