diff options
author | Guido van Rossum <guido@python.org> | 2001-10-17 05:59:26 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-10-17 05:59:26 (GMT) |
commit | f93befc2094f5adea7a7b7aa8b979d52241b2062 (patch) | |
tree | f913f25b9218e5b63c14784b5e55bb9b83086598 /Lib/mhlib.py | |
parent | adbd35bbccd170acf1a57b582786f5e753934508 (diff) | |
download | cpython-f93befc2094f5adea7a7b7aa8b979d52241b2062.zip cpython-f93befc2094f5adea7a7b7aa8b979d52241b2062.tar.gz cpython-f93befc2094f5adea7a7b7aa8b979d52241b2062.tar.bz2 |
Folder.getlast(): avoid PyChecker warning.
Diffstat (limited to 'Lib/mhlib.py')
-rw-r--r-- | Lib/mhlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ class Folder: 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): |