diff options
| author | cotton | 1998-11-09 16:56:34 +0000 |
|---|---|---|
| committer | cotton | 1998-11-09 16:56:34 +0000 |
| commit | 3b9ad468b6027bfef1ebe9db636004b1e391ffcd (patch) | |
| tree | af1c59c3b2153e502e8429aedcb705f2c92ecea0 /Mailman/Cgi/archives.py | |
| parent | a9d1e284c41409de9ea25164ada8a16c7ef1afc3 (diff) | |
| download | mailman-3b9ad468b6027bfef1ebe9db636004b1e391ffcd.tar.gz mailman-3b9ad468b6027bfef1ebe9db636004b1e391ffcd.tar.zst mailman-3b9ad468b6027bfef1ebe9db636004b1e391ffcd.zip | |
made it use %s/%s instead of os.path.join for url.
scott
Diffstat (limited to 'Mailman/Cgi/archives.py')
| -rw-r--r-- | Mailman/Cgi/archives.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Cgi/archives.py b/Mailman/Cgi/archives.py index d96d6791d..88df821bc 100644 --- a/Mailman/Cgi/archives.py +++ b/Mailman/Cgi/archives.py @@ -69,7 +69,7 @@ def GetArchiveList(list): if not len(dir_listing): return "<h3><em>No archives are currently available.</em></h3>" for dir in dir_listing: - link = htmlformat.Link(os.path.join(list._base_archive_url, dir), + link = htmlformat.Link("%s/%s" % (list._base_archive_url, dir), "Volume %s" % dir[7:]) archive_list.AddItem(link) |
