]> granicus.if.org Git - python/commitdiff
Convert to use class-based exceptions.
authorFred Drake <fdrake@acm.org>
Thu, 29 Jun 2000 05:06:02 +0000 (05:06 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 29 Jun 2000 05:06:02 +0000 (05:06 +0000)
Correct exception information in one docstring.

Lib/mhlib.py

index f7c39fa0eebb50a70dff25049b3d1efb130b1de4..9af04b20892aec5272c3b11e8d9d8160b20cf292 100644 (file)
@@ -85,7 +85,8 @@ from bisect import bisect
 
 # Exported constants
 
-Error = 'mhlib.Error'
+class Error(Exception):
+    pass
 
 
 class MH:
@@ -330,7 +331,7 @@ class Folder:
             f.close()
 
     def getcurrent(self):
-        """Return the current message.  Raise KeyError when there is none."""
+        """Return the current message.  Raise Error when there is none."""
         seqs = self.getsequences()
         try:
             return max(seqs['cur'])