@@ -423,10 +423,10 @@ def getacl(self, mailbox):
423423 def getquota (self , root ):
424424 """Get the quota root's resource usage and limits.
425425
426- Part of the IMAP4 QUOTA extension defined in rfc2087.
426+ Part of the IMAP4 QUOTA extension defined in rfc2087.
427427
428428 (typ, [data]) = <instance>.getquota(root)
429- """
429+ """
430430 typ , dat = self ._simple_command ('GETQUOTA' , root )
431431 return self ._untagged_response (typ , dat , 'QUOTA' )
432432
@@ -435,11 +435,11 @@ def getquotaroot(self, mailbox):
435435 """Get the list of quota roots for the named mailbox.
436436
437437 (typ, [[QUOTAROOT responses...], [QUOTA responses]]) = <instance>.getquotaroot(mailbox)
438- """
438+ """
439439 typ , dat = self ._simple_command ('GETQUOTA' , root )
440440 typ , quota = self ._untagged_response (typ , dat , 'QUOTA' )
441441 typ , quotaroot = self ._untagged_response (typ , dat , 'QUOTAROOT' )
442- return typ , [quotaroot , quota ]
442+ return typ , [quotaroot , quota ]
443443
444444
445445 def list (self , directory = '""' , pattern = '*' ):
@@ -596,7 +596,7 @@ def setquota(self, root, limits):
596596 """Set the quota root's resource limits.
597597
598598 (typ, [data]) = <instance>.setquota(root, limits)
599- """
599+ """
600600 typ , dat = self ._simple_command ('SETQUOTA' , root , limits )
601601 return self ._untagged_response (typ , dat , 'QUOTA' )
602602
0 commit comments