diff options
| author | Barry Warsaw | 2016-03-25 10:24:19 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2016-03-25 10:24:19 -0400 |
| commit | 71ebe367a52316811f570d09f2213c192a47973f (patch) | |
| tree | a2ffa5f81846eed7e1d6cb24b157e91dba17d5bd /src/mailman/interfaces | |
| parent | a681354cadf48394127796eb111c2904283c9288 (diff) | |
| download | mailman-71ebe367a52316811f570d09f2213c192a47973f.tar.gz mailman-71ebe367a52316811f570d09f2213c192a47973f.tar.zst mailman-71ebe367a52316811f570d09f2213c192a47973f.zip | |
Diffstat (limited to 'src/mailman/interfaces')
| -rw-r--r-- | src/mailman/interfaces/errors.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mailman/interfaces/errors.py b/src/mailman/interfaces/errors.py index 6045e4868..dbf74c035 100644 --- a/src/mailman/interfaces/errors.py +++ b/src/mailman/interfaces/errors.py @@ -22,11 +22,9 @@ components. More specific exceptions will be located in the relevant interfaces. """ -# We can't use @mailman.public here because of circular imports. -__all__ = [ - 'MailmanError', - ] +from mailman import public +@public class MailmanError(Exception): """Base class for all Mailman exceptions.""" |
