commit | f93befc2094f5adea7a7b7aa8b979d52241b2062 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed Oct 17 05:59:26 2001 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed Oct 17 05:59:26 2001 +0000 |
tree | f913f25b9218e5b63c14784b5e55bb9b83086598 | |
parent | adbd35bbccd170acf1a57b582786f5e753934508 [diff] |
Folder.getlast(): avoid PyChecker warning.
diff --git a/Lib/mhlib.py b/Lib/mhlib.py index c83b637..6cf0128 100644 --- a/Lib/mhlib.py +++ b/Lib/mhlib.py
@@ -648,7 +648,7 @@ def getlast(self): """Return the last message number.""" if not hasattr(self, 'last'): - messages = self.listmessages() + self.listmessages() # Set self.last return self.last def setlast(self, last):