Skip to content

Commit

Permalink
Comment IMAP bugfix so future me does not delete it
Browse files Browse the repository at this point in the history
  • Loading branch information
BjarniRunar committed Aug 16, 2019
1 parent 94b4b58 commit 852fb64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mailpile/mail_source/imap.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def get_line():
raise self._conn.abort('socket error: %s' % val)

def quit(self):
self._can_idle = False
self._can_idle = False # Required to avoid deadlock below
with self._lock:
try:
if self._conn and self._conn.file:
Expand Down

0 comments on commit 852fb64

Please sign in to comment.