diff options
| author | Barry Warsaw | 2011-10-24 22:40:59 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2011-10-24 22:40:59 -0400 |
| commit | 42d13a8672d73aca2fc889633dbf7b3ff2a9c7ee (patch) | |
| tree | ebdf4648191978b0010b9add08f416e04d1385d8 /src/mailman/interfaces/styles.py | |
| parent | c7e4e56de6f943b49fdaaede27321185394f7ecb (diff) | |
| download | mailman-42d13a8672d73aca2fc889633dbf7b3ff2a9c7ee.tar.gz mailman-42d13a8672d73aca2fc889633dbf7b3ff2a9c7ee.tar.zst mailman-42d13a8672d73aca2fc889633dbf7b3ff2a9c7ee.zip | |
* Implement the style manager as a utility instead of an attribute hanging
off the `mailman.config.config` object.
* Fixed bogus use of `bounce_processing` attribute (should have been
`process_bounces`, with thanks to Vincent Fretin. (LP: #876774)
Diffstat (limited to 'src/mailman/interfaces/styles.py')
| -rw-r--r-- | src/mailman/interfaces/styles.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/interfaces/styles.py b/src/mailman/interfaces/styles.py index 7043b703e..b9088e7dd 100644 --- a/src/mailman/interfaces/styles.py +++ b/src/mailman/interfaces/styles.py @@ -54,7 +54,7 @@ class IStyle(Interface): """ def match(mailing_list, styles): - """Give this list a chance to match the mailing list. + """Give this style a chance to match the mailing list. If the style's internal matching rules match the `mailing_list`, then the style may append itself to the `styles` list. This list will be |
