diff options
| author | tkikuchi | 2006-12-03 08:06:45 +0000 |
|---|---|---|
| committer | tkikuchi | 2006-12-03 08:06:45 +0000 |
| commit | 3bdd0dc5d86a9d64fd83edf1f66d342f69efa28d (patch) | |
| tree | 0fc5abf51223b686a6fb3796b745e03d57f37fda /Mailman/Archiver/HyperArch.py | |
| parent | bb9f0c58c062cf0bc7ca0e103355443445af2923 (diff) | |
| download | mailman-3bdd0dc5d86a9d64fd83edf1f66d342f69efa28d.tar.gz mailman-3bdd0dc5d86a9d64fd83edf1f66d342f69efa28d.tar.zst mailman-3bdd0dc5d86a9d64fd83edf1f66d342f69efa28d.zip | |
Diffstat (limited to 'Mailman/Archiver/HyperArch.py')
| -rw-r--r-- | Mailman/Archiver/HyperArch.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mailman/Archiver/HyperArch.py b/Mailman/Archiver/HyperArch.py index 2bdde575b..35474a0cb 100644 --- a/Mailman/Archiver/HyperArch.py +++ b/Mailman/Archiver/HyperArch.py @@ -184,7 +184,7 @@ def quick_maketext(templatefile, dict=None, lang=None, mlist=None): if mlist is None: listname = '' else: - listname = mlist._internal_name + listname = mlist.fqdn_listname if lang is None: if mlist is None: lang = mm_cfg.DEFAULT_SERVER_LANGUAGE @@ -345,7 +345,7 @@ class Article(pipermail.Article): else: mlist = None if mlist: - d['__listname'] = self._mlist.internal_name() + d['__listname'] = self._mlist.fqdn_listname else: d['__listname'] = None # Delete a few other things we don't want in the pickle @@ -741,7 +741,7 @@ class HyperArchive(pipermail.T): def html_TOC(self): mlist = self.maillist - listname = mlist.internal_name() + listname = mlist.fqdn_listname mbox = os.path.join(mlist.archive_dir()+'.mbox', listname+'.mbox') d = {"listname": mlist.real_name, "listinfo": mlist.GetScriptURL('listinfo', absolute=1), @@ -823,7 +823,7 @@ class HyperArchive(pipermail.T): return 1 self._lock_file = LockFile.LockFile( os.path.join(mm_cfg.LOCK_DIR, - self.maillist.internal_name() + '-arch.lock')) + self.maillist.fqdn_listname + '-arch.lock')) try: self._lock_file.lock(timeout=0.5) except LockFile.TimeOutError: |
