diff options
| author | bwarsaw | 1998-05-26 19:01:46 +0000 |
|---|---|---|
| committer | bwarsaw | 1998-05-26 19:01:46 +0000 |
| commit | 2350174d30124daa7860e43e3b14c1abd7e5bf18 (patch) | |
| tree | 645720f12398f8d7c531b37cc593e6148bf53824 /modules/maillist.py | |
| parent | 2b6d20501e5138ad78326485f979fb878c64cbbd (diff) | |
| download | mailman-2350174d30124daa7860e43e3b14c1abd7e5bf18.tar.gz mailman-2350174d30124daa7860e43e3b14c1abd7e5bf18.tar.zst mailman-2350174d30124daa7860e43e3b14c1abd7e5bf18.zip | |
Diffstat (limited to 'modules/maillist.py')
| -rw-r--r-- | modules/maillist.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/maillist.py b/modules/maillist.py index 72304b12a..44339b4d9 100644 --- a/modules/maillist.py +++ b/modules/maillist.py @@ -15,9 +15,10 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -"The class representing a mailman maillist. Mixes in many feature classes." +"""The class representing a Mailman mailing list. -__version__ = "$Revision: 547 $" +Mixes in many feature classes. +""" try: import mm_cfg @@ -53,7 +54,7 @@ class MailList(MailCommandHandler, HTMLFormatter, Deliverer, ListAdmin, self._log_files = {} # 'class': log_file_obj if name: if name not in mm_utils.list_names(): - raise mm_err.MMUnknownListError, 'list not found' + raise mm_err.MMUnknownListError, 'list not found: %s' % name self._full_path = os.path.join(mm_cfg.LIST_DATA_DIR, name) # Load in the default values so that old data files aren't # hosed by new versions of the program. |
