diff options
| author | bwarsaw | 2000-09-14 05:08:08 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-09-14 05:08:08 +0000 |
| commit | 740887029653c4b1cd3887d5cccc11f231a427b9 (patch) | |
| tree | 2de309fcb55a0cfd448f7d71207a7b3e335f36c4 | |
| parent | c9286082111b1a5b33219ceef0643d3bb2efcfcf (diff) | |
| download | mailman-740887029653c4b1cd3887d5cccc11f231a427b9.tar.gz mailman-740887029653c4b1cd3887d5cccc11f231a427b9.tar.zst mailman-740887029653c4b1cd3887d5cccc11f231a427b9.zip | |
Changed the warning into a comment, and clarify that users should
never make changes to this file, but should edit mm_cfg.py instead.
| -rw-r--r-- | Mailman/Defaults.py.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in index b1d74473a..8df5bf952 100644 --- a/Mailman/Defaults.py.in +++ b/Mailman/Defaults.py.in @@ -17,13 +17,13 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. """Distributed default settings for significant Mailman config variables. - -You should NOT edit the values here unless you're changing settings for -distribution. For site-specific settings, put your definitions in -mm_cfg.py after the point at which it includes (via 'from ... import *') -this file, to override the distributed defaults with site-specific ones. """ +# NEVER make site configuration changes to this file. ALWAYS make them in +# mm_cfg.py instead, in the designated area. See the comments in that file +# for details. + + import os def seconds(s): return s |
