Skip to content

Commit 9454f32

Browse files
committed
Change imaplib code
1 parent e4da2e3 commit 9454f32

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Lib/imaplib.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,8 @@ def proxyauth(self, user):
807807
(typ, [data]) = <instance>.proxyauth(user)
808808
"""
809809

810-
return self._simple_command('PROXYAUTH', user)
810+
name = 'PROXYAUTH'
811+
return self._simple_command(name, user)
811812

812813

813814
def rename(self, oldmailbox, newmailbox):

0 commit comments

Comments
 (0)