Remove some unnecessary whitespace (in existing code)

Addresses https://github.com/OfflineIMAP/offlineimap/pull/498#discussion_r141672756

Signed-off-by: Urs Liska <git@ursliska.de>
This commit is contained in:
Urs Liska 2017-10-02 01:27:51 +02:00
parent c2549a6bfc
commit cbbcab2bb9
1 changed files with 2 additions and 2 deletions

View File

@ -86,9 +86,9 @@ class IMAPFolder(BaseFolder):
:param: Enforce new SELECT even if we are on that folder already.
:returns: raises :exc:`OfflineImapError` severity FOLDER on error"""
try:
imapobj.select(self.getfullIMAPname(), force = force)
imapobj.select(self.getfullIMAPname(), force=force)
except imapobj.readonly:
imapobj.select(self.getfullIMAPname(), readonly = True, force = force)
imapobj.select(self.getfullIMAPname(), readonly=True, force=force)
def getfullIMAPname(self):
name = self.getfullname()