summaryrefslogtreecommitdiffstats
path: root/Lib/mailbox.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/mailbox.py')
-rwxr-xr-xLib/mailbox.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/mailbox.py b/Lib/mailbox.py
index c92e145..53b2c19 100755
--- a/Lib/mailbox.py
+++ b/Lib/mailbox.py
@@ -30,7 +30,7 @@ class _Mailbox:
start = self.fp.tell()
self._search_end()
self.seekp = stop = self.fp.tell()
- if start <> stop:
+ if start != stop:
break
return rfc822.Message(_Subfile(self.fp, start, stop))